We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a8e97 commit d6fa2daCopy full SHA for d6fa2da
1 file changed
src/scorep_jupyter/kernel_messages.py
@@ -42,13 +42,8 @@ class KernelErrorCode(Enum):
42
43
44
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
- )
+ scorep_process_error_hint = (
+ "\nHint: full error info saved to log file: "
+ f"{LOGGING['handlers']['error_file']['filename']}"
+ )
54
return scorep_process_error_hint
0 commit comments