Skip to content

Commit

Permalink
Merge pull request #167 from jsoref/debugging-whitespace
Browse files Browse the repository at this point in the history
Improve debugging formatting
  • Loading branch information
oleg-nenashev authored Feb 24, 2020
2 parents 74ff685 + f72211c commit c9f2b26
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,9 @@ public void configureWebApplication () throws Exception
}

getLog().info("Context path = " + webApp.getContextPath());
getLog().info("Tmp directory = "+ (webApp.getTempDirectory()== null? " determined at runtime": webApp.getTempDirectory()));
getLog().info("Web defaults = "+(webApp.getDefaultsDescriptor()==null?" jetty default":webApp.getDefaultsDescriptor()));
getLog().info("Web overrides = "+(webApp.getOverrideDescriptor()==null?" none":webApp.getOverrideDescriptor()));
getLog().info("Tmp directory = " + (webApp.getTempDirectory()== null ? "(determined at runtime)" : webApp.getTempDirectory()));
getLog().info("Web defaults = " + (webApp.getDefaultsDescriptor()== null ? "(jetty default)" : webApp.getDefaultsDescriptor()));
getLog().info("Web overrides = " + (webApp.getOverrideDescriptor()== null ? "(none)" : webApp.getOverrideDescriptor()));
}


Expand Down

0 comments on commit c9f2b26

Please sign in to comment.