changeset 1754:821663c6872c

Typo fix Fix a typo in AgentApplication - s/Could nto/Could not - in the error message printed when the agent cannot connect to storage. Reviewed-by: omajid Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2015-June/014025.html
author Andrew Azores <aazores@redhat.com>
date Fri, 12 Jun 2015 10:58:21 -0400
parents c18fdca8ad65
children e5dc352ea8be
files agent/cli/src/main/java/com/redhat/thermostat/agent/cli/impl/AgentApplication.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/agent/cli/src/main/java/com/redhat/thermostat/agent/cli/impl/AgentApplication.java	Fri May 29 12:13:08 2015 +0200
+++ b/agent/cli/src/main/java/com/redhat/thermostat/agent/cli/impl/AgentApplication.java	Fri Jun 12 10:58:21 2015 -0400
@@ -177,7 +177,7 @@
                 } catch (ConnectionException e) {
                     logger.log(Level.SEVERE, "Could not connect to storage (" + e.getMessage() + ")");
                     // log stack trace as info only
-                    logger.log(Level.INFO, "Could nto connect to storage", e);
+                    logger.log(Level.INFO, "Could not connect to storage", e);
                     shutdown(ExitStatus.EXIT_ERROR);
                 }