diff --git a/src/main/java/org/openhab/automation/jrule/internal/compiler/JRuleCompiler.java b/src/main/java/org/openhab/automation/jrule/internal/compiler/JRuleCompiler.java index 3770fbd3..c00e8cae 100644 --- a/src/main/java/org/openhab/automation/jrule/internal/compiler/JRuleCompiler.java +++ b/src/main/java/org/openhab/automation/jrule/internal/compiler/JRuleCompiler.java @@ -250,7 +250,7 @@ public boolean compile(List javaSourceFiles, String classPath) { String cp = openhabCoreJar + System.getProperty(JAVA_CLASS_PATH_PROPERTY) + File.pathSeparator + openhabCoreThingJar + System.getProperty(JAVA_CLASS_PATH_PROPERTY) + File.pathSeparator + classPath; optionList.add(cp); - logDebug("1337Compiling classes using classpath: {}", cp); + logDebug("Compiling classes using classpath: {}", cp); javaSourceFiles.stream().filter(javaSourceFile -> javaSourceFile.exists() && javaSourceFile.canRead()) .forEach(javaSourceFile -> logDebug("Compiling java Source file: {}", javaSourceFile));