Commit ffe53480 authored by Phillip Webb's avatar Phillip Webb

Polish formatting

parent 64599261
...@@ -168,13 +168,13 @@ public class LoggingApplicationListener implements SmartApplicationListener { ...@@ -168,13 +168,13 @@ public class LoggingApplicationListener implements SmartApplicationListener {
// Logback won't read backslashes so add a clean path for it to use // Logback won't read backslashes so add a clean path for it to use
if (!StringUtils.hasLength(System.getProperty("LOG_TEMP"))) { if (!StringUtils.hasLength(System.getProperty("LOG_TEMP"))) {
String path = System.getProperty("java.io.tmpdir"); String path = System.getProperty("java.io.tmpdir");
if (path!=null) { if (path != null) {
path = StringUtils.cleanPath(path); path = StringUtils.cleanPath(path);
if (path.endsWith("/")) { if (path.endsWith("/")) {
path = path.substring(0, path.length() - 1); path = path.substring(0, path.length() - 1);
} }
System.setProperty("LOG_TEMP", path); System.setProperty("LOG_TEMP", path);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment