summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-08-24 11:16:03 +0200
committergjoranv <gv@oath.com>2017-08-24 11:16:03 +0200
commitd3cf8a334f5b8e9e0cdd7db38659a9cf3592c243 (patch)
tree4d8a371d4834d63a9b40c3e6a43f002c72231fb9 /jdisc_core
parentc9714fd5f0da37b73c075b81da8fe55c007afcc8 (diff)
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);
}
}