Skip to content

Commit d6fa2da

Browse files
author
OutlyingWest
committed
hint logic changed to be shown in all cases
1 parent 95a8e97 commit d6fa2da

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

src/scorep_jupyter/kernel_messages.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,8 @@ class KernelErrorCode(Enum):
4242

4343

4444
def get_scorep_process_error_hint():
45-
is_spinner_enabled = str(os.getenv(
46-
"SCOREP_JUPYTER_DISABLE_PROCESSING_ANIMATIONS"
47-
)).lower() not in ["true", "1", "t"]
48-
scorep_process_error_hint = ""
49-
if is_spinner_enabled:
50-
scorep_process_error_hint = (
51-
"\nHint: full error info saved to log file: "
52-
f"{LOGGING['handlers']['error_file']['filename']}"
53-
)
45+
scorep_process_error_hint = (
46+
"\nHint: full error info saved to log file: "
47+
f"{LOGGING['handlers']['error_file']['filename']}"
48+
)
5449
return scorep_process_error_hint

0 commit comments

Comments
 (0)