You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2018/04/09 20:19:45 UTC

[archiva-redback-components-spring-taskqueue] 25/37: fix logging warn level

This is an automated email from the ASF dual-hosted git repository.

martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-redback-components-spring-taskqueue.git

commit e406935f52f876897ab17212a40578cbc2269cf7
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Mon Dec 2 02:55:36 2013 +0000

    fix logging warn level
    
    git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-components/trunk@1546881 13f79535-47bb-0310-9956-ffa450edef68
---
 .../components/taskqueue/execution/ThreadedTaskQueueExecutor.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/archiva/redback/components/taskqueue/execution/ThreadedTaskQueueExecutor.java b/src/main/java/org/apache/archiva/redback/components/taskqueue/execution/ThreadedTaskQueueExecutor.java
index 213f6dc..c79dc43 100644
--- a/src/main/java/org/apache/archiva/redback/components/taskqueue/execution/ThreadedTaskQueueExecutor.java
+++ b/src/main/java/org/apache/archiva/redback/components/taskqueue/execution/ThreadedTaskQueueExecutor.java
@@ -218,8 +218,7 @@ public class ThreadedTaskQueueExecutor
                 else
                 {
                     logger.warn(
-                        "Task not cancelled (Flags: done: " + future.isDone() + " cancelled: " + future.isCancelled()
-                            + ")" );
+                        "Task not cancelled (Flags: done: {} cancelled: {})", future.isDone(), future.isCancelled() );
                 }
             }
             else

-- 
To stop receiving notification emails like this one, please contact
martin_s@apache.org.