You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/07/31 04:00:03 UTC

[43/50] [abbrv] git commit: ACCUMULO-1603 Pass the exception on to the logger instead of logging the toString of the exception so we actually get a stacktrace.

ACCUMULO-1603 Pass the exception on to the logger instead of logging the
toString of the exception so we actually get a stacktrace.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/108c492c
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/108c492c
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/108c492c

Branch: refs/heads/1.5.1-SNAPSHOT
Commit: 108c492cfac0edcad0dd1d09ff9d90e1de1e2ff1
Parents: 513364f
Author: Josh Elser <el...@apache.org>
Authored: Tue Jul 23 19:58:25 2013 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Tue Jul 23 19:58:25 2013 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/server/trace/TraceServer.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/108c492c/src/server/src/main/java/org/apache/accumulo/server/trace/TraceServer.java
----------------------------------------------------------------------
diff --git a/src/server/src/main/java/org/apache/accumulo/server/trace/TraceServer.java b/src/server/src/main/java/org/apache/accumulo/server/trace/TraceServer.java
index 614da56..8e61a89 100644
--- a/src/server/src/main/java/org/apache/accumulo/server/trace/TraceServer.java
+++ b/src/server/src/main/java/org/apache/accumulo/server/trace/TraceServer.java
@@ -157,7 +157,7 @@ public class TraceServer implements Watcher {
         connector.tableOperations().setProperty(table, Property.TABLE_FORMATTER_CLASS.getKey(), TraceFormatter.class.getName());
         break;
       } catch (Exception ex) {
-        log.info("waiting to checking/create the trace table: " + ex);
+        log.info("Waiting to checking/create the trace table.", ex);
         UtilWaitThread.sleep(1000);
       }
     }