We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376f43f commit e177c4eCopy full SHA for e177c4e
net.lecousin.core/src/main/java/net/lecousin/framework/concurrent/Task.java
@@ -219,7 +219,8 @@ public void run() {
219
Logger logger = app.getLoggerFactory().getLogger("Threading");
220
if (logger.debug()) {
221
CancelException reason = result.getCancelEvent();
222
- logger.debug("Task cancelled: " + description + " => " + (reason != null ? reason.getMessage() : "No reason given"));
+ logger.debug("Task cancelled: " + description + " => "
223
+ + (reason != null ? reason.getMessage() : "No reason given"));
224
}
225
cancel(result.getCancelEvent());
226
0 commit comments