Skip to content

Commit

Permalink
improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Nov 30, 2018
1 parent 0a5fcec commit 92cffde
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ private static boolean validateRoute(ShellConfiguration shellConfiguration,
private static void logRouteNotFoud(String route,
boolean startRoute,
boolean routeError) {
String sb = "route of ";
String sb = "value of ";
if (startRoute) {
sb += " start route ";
sb += "start route ";
} else if (routeError) {
sb += " route error ";
sb += "route error ";
} else {
sb += " route ";
sb += "route ";
}
sb += ">>" + route + "<< does not exist!";
ClientLogger.get()
Expand Down

0 comments on commit 92cffde

Please sign in to comment.