We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6ea19 commit f381bfaCopy full SHA for f381bfa
source/crash_handler.d
@@ -37,7 +37,9 @@ static if (BacktraceHandler)
37
])
38
signal(sig, &backtrace_handler);
39
40
- fprintf(stderr, "Registered backtrace signal handlers\n");
+ // this is print on every invocation of serve-d, so we only print this in unittests and assume it works elsewhere
41
+ version (unittest)
42
+ fprintf(stderr, "Registered backtrace signal handlers\n");
43
}
44
45
shared static this()
0 commit comments