diff options
Diffstat (limited to 'src/com/itmill/toolkit/terminal/web/JarThemeSource.java')
-rw-r--r-- | src/com/itmill/toolkit/terminal/web/JarThemeSource.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/itmill/toolkit/terminal/web/JarThemeSource.java b/src/com/itmill/toolkit/terminal/web/JarThemeSource.java index f1cf08db1a..8ffb088921 100644 --- a/src/com/itmill/toolkit/terminal/web/JarThemeSource.java +++ b/src/com/itmill/toolkit/terminal/web/JarThemeSource.java @@ -112,7 +112,7 @@ public class JarThemeSource implements ThemeSource { } // Debug info - if (webAdapterServlet.isDebugMode()) { + if (webAdapterServlet.isDebugMode(null)) { Log.debug("Added JarThemeSource: " + this.file + ":" + this.path); } @@ -133,7 +133,7 @@ public class JarThemeSource implements ThemeSource { } if (this.subdirs.isEmpty()) { - if (webAdapterServlet.isDebugMode()) { + if (webAdapterServlet.isDebugMode(null)) { Log.info("JarThemeSource: Ignoring empty JAR path: " + this.file + " path: " + this.path); } @@ -152,7 +152,7 @@ public class JarThemeSource implements ThemeSource { // return XSL from this theme if (this.theme != null) { - if (webAdapterServlet.isDebugMode()) { + if (webAdapterServlet.isDebugMode(null)) { Log.info("JarThemeSource: Loading XSL from: " + theme); } |