Skip to content

Commit 562bcbc

Browse files
authored
Merge pull request #3255 from vkarak/enhancement/print-selected-system
[enhancement] Print selected system in `[ReFrame Setup]` information
2 parents fda05f4 + 706ac5f commit 562bcbc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

reframe/frontend/cli.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,18 +985,19 @@ def print_infoline(param, value):
985985
}
986986

987987
# Print command line
988-
printer.info(f"[ReFrame Setup]")
988+
printer.info('[ReFrame Setup]')
989989
print_infoline('version', session_info['version'])
990990
print_infoline('command', repr(session_info['cmdline']))
991991
print_infoline(
992-
f"launched by",
992+
'launched by',
993993
f"{session_info['user'] or '<unknown>'}@{session_info['hostname']}"
994994
)
995995
print_infoline('working directory', repr(session_info['workdir']))
996996
print_infoline(
997997
'settings files',
998998
', '.join(repr(x) for x in session_info['config_files'])
999999
)
1000+
print_infoline('selected system', repr(rt.system.name))
10001001
print_infoline('check search path',
10011002
f"{'(R) ' if loader.recurse else ''}"
10021003
f"{':'.join(loader.load_path)!r}")

0 commit comments

Comments
 (0)