summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2017-08-24 11:31:39 +0200
committerGitHub <noreply@github.com>2017-08-24 11:31:39 +0200
commit6e6459a5a598e0f243bd6ffd9e5cc7cf334368f3 (patch)
treed60dfd1019b2898c0177fabc75ceb632325bb983 /jdisc_core
parent94b86e00a183b4a87b708d2d075d27311a112d15 (diff)
parentd3cf8a334f5b8e9e0cdd7db38659a9cf3592c243 (diff)
Merge pull request #3202 from vespa-engine/gjoranv/severe-log
Log exception from StandaloneMain as SEVERE.
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/core/StandaloneMain.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/core/StandaloneMain.java b/jdisc_core/src/main/java/com/yahoo/jdisc/core/StandaloneMain.java
index c7b38b5950d..fc3997657dc 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/core/StandaloneMain.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/core/StandaloneMain.java
@@ -48,7 +48,7 @@ public class StandaloneMain {
System.out.println("debug\tStopped ok.");
System.exit(0);
} catch (Exception e) {
- log.log(Level.WARNING, "Unexpected: ", e);
+ log.log(Level.SEVERE, "Unexpected: ", e);
System.exit(6);
}
}