We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e3f3b commit 1f01afeCopy full SHA for 1f01afe
1 file changed
easybuild/framework/easyblock.py
@@ -3234,9 +3234,8 @@ def build_and_install_one(ecdict, init_env):
3234
3235
# check for errors
3236
if run.errors_found_in_log > 0:
3237
- print_msg("WARNING: %d possible error(s) were detected in the "
3238
- "build logs, please verify the build." % run.errors_found_in_log,
3239
- log=_log, silent=silent)
+ _log.warning("%d possible error(s) were detected in the "
+ "build logs, please verify the build.", run.errors_found_in_log)
3240
3241
if app.postmsg:
3242
print_msg("\nWARNING: %s\n" % app.postmsg, log=_log, silent=silent)
0 commit comments