Skip to content

Commit

Permalink
[style] Make a distinction between temporary and permanent log files
Browse files Browse the repository at this point in the history
The log messages mention both the temporary log file created in the
build directory, and the path where the file is copied for permanent
storage. This commits makes a distinction between the two path in the
log messages.
  • Loading branch information
gkaf89 committed Sep 8, 2024
1 parent 27d4b13 commit 6bc53e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -4202,7 +4202,7 @@ def persists_failed_compilation_log_and_artifacts(success, application_log, sile
# there may be multiple log files, or the file name may be different due to zipping
logs = glob.glob('%s*' % application_log)
print_msg(
"Results of the build can be found in the log file(s) %s" % ', '.join(logs),
"Results of the build can be found in the temporary log file(s) %s" % ', '.join(logs),
log=_log,
silent=silent
)
Expand Down

0 comments on commit 6bc53e6

Please sign in to comment.