Reduce visibility of minor debug log message.

This commit is contained in:
Sönke Ludwig 2021-01-12 17:21:48 +01:00
parent ff4c9851c7
commit df03416eea

View file

@ -440,7 +440,7 @@ final package class TaskFiber : Fiber {
debug if (ms_taskEventCallback) ms_taskEventCallback(TaskEvent.end, handle); debug if (ms_taskEventCallback) ms_taskEventCallback(TaskEvent.end, handle);
debug if (() @trusted { return (cast(shared)this); } ().getTaskStatus().interrupt) debug if (() @trusted { return (cast(shared)this); } ().getTaskStatus().interrupt)
logDebug("Task exited while an interrupt was in flight."); logDebugV("Task exited while an interrupt was in flight.");
} catch (Exception e) { } catch (Exception e) {
debug if (ms_taskEventCallback) ms_taskEventCallback(TaskEvent.fail, handle); debug if (ms_taskEventCallback) ms_taskEventCallback(TaskEvent.fail, handle);
e.logException!(LogLevel.critical)("Task terminated with uncaught exception"); e.logException!(LogLevel.critical)("Task terminated with uncaught exception");