Skip to content

Commit e177c4e

Browse files
committed
fix checkstyle
1 parent 376f43f commit e177c4e

File tree

1 file changed

+2
-1
lines changed
  • net.lecousin.core/src/main/java/net/lecousin/framework/concurrent

1 file changed

+2
-1
lines changed

net.lecousin.core/src/main/java/net/lecousin/framework/concurrent/Task.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ public void run() {
219219
Logger logger = app.getLoggerFactory().getLogger("Threading");
220220
if (logger.debug()) {
221221
CancelException reason = result.getCancelEvent();
222-
logger.debug("Task cancelled: " + description + " => " + (reason != null ? reason.getMessage() : "No reason given"));
222+
logger.debug("Task cancelled: " + description + " => "
223+
+ (reason != null ? reason.getMessage() : "No reason given"));
223224
}
224225
cancel(result.getCancelEvent());
225226
}

0 commit comments

Comments
 (0)