Skip to content

Commit 913df54

Browse files
author
OutlyingWest
committed
minor logging and messages improvement
1 parent 32d2811 commit 913df54

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/jumper/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ async def scorep_execute(
888888
# Determine directory to which trace files were saved by Score-P
889889
scorep_folder = ""
890890
if "SCOREP_EXPERIMENT_DIRECTORY" in os.environ:
891-
self.log.warning(f'{os.environ["SCOREP_EXPERIMENT_DIRECTORY"]=}')
891+
self.log.debug(f'{os.environ["SCOREP_EXPERIMENT_DIRECTORY"]=}')
892892
scorep_folder = os.environ["SCOREP_EXPERIMENT_DIRECTORY"]
893893
self.cell_output(
894894
f"Instrumentation results can be found in {scorep_folder}"

src/jumper/kernel_messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ class KernelErrorCode(Enum):
3030
"[mode: {mode}] Failed to load persistence ({direction}, marshaller: {marshaller})."
3131
),
3232
KernelErrorCode.SCOREP_SUBPROCESS_FAIL: (
33-
"[mode: {mode}] Subprocess terminated unexpectedly. Persistence not recorded ({marshaller})."
33+
"[mode: {mode}] Subprocess terminated unexpectedly. Persistence not recorded (marshaller: {marshaller})."
3434
),
3535
}

0 commit comments

Comments
 (0)