summaryrefslogtreecommitdiffstats
path: root/clustercontroller-standalone
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-04-24 15:59:28 +0200
committergjoranv <gv@verizonmedia.com>2020-04-25 02:24:37 +0200
commit729914d520026e931c9597e21831698aff30124c (patch)
tree4fc7d4169dea31022c5e11d375e0d5dec0966ad2 /clustercontroller-standalone
parent545c7069fbf76932542f80a25aab44fdc972925a (diff)
LogLevel.FATAL -> Level.SEVERE
Diffstat (limited to 'clustercontroller-standalone')
-rw-r--r--clustercontroller-standalone/src/main/java/com/yahoo/vespa/clustercontroller/standalone/StandAloneClusterController.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/clustercontroller-standalone/src/main/java/com/yahoo/vespa/clustercontroller/standalone/StandAloneClusterController.java b/clustercontroller-standalone/src/main/java/com/yahoo/vespa/clustercontroller/standalone/StandAloneClusterController.java
index 1e163cf7460..3242041b287 100644
--- a/clustercontroller-standalone/src/main/java/com/yahoo/vespa/clustercontroller/standalone/StandAloneClusterController.java
+++ b/clustercontroller-standalone/src/main/java/com/yahoo/vespa/clustercontroller/standalone/StandAloneClusterController.java
@@ -31,7 +31,7 @@ public class StandAloneClusterController {
try{
app.stop();
} catch (Exception e) {
- log.log(LogLevel.FATAL, "Failed to stop application '" + app.getName() + "': " + e.getMessage());
+ log.log(Level.SEVERE, "Failed to stop application '" + app.getName() + "': " + e.getMessage());
e.printStackTrace();
return;
}
@@ -48,7 +48,7 @@ public class StandAloneClusterController {
try{
myApp.start();
} catch (Exception e) {
- log.log(LogLevel.FATAL, "Failed to start application '" + myApp.getName() + "': " + e.getMessage());
+ log.log(Level.SEVERE, "Failed to start application '" + myApp.getName() + "': " + e.getMessage());
e.printStackTrace();
return;
}
@@ -56,7 +56,7 @@ public class StandAloneClusterController {
try{
myApp.run();
} catch (Exception e) {
- log.log(LogLevel.FATAL, "Application '" + myApp.getName() + "' runtime failure: " + e.getMessage());
+ log.log(Level.SEVERE, "Application '" + myApp.getName() + "' runtime failure: " + e.getMessage());
e.printStackTrace();
}
}