fix code format

This commit is contained in:
Shinsuke Sugaya 2019-11-14 13:58:49 +09:00
parent 69a447b06e
commit f99218b6fe
2 changed files with 2 additions and 2 deletions

View file

@ -83,7 +83,7 @@ public class ScriptExecutorJob implements LaJob {
}
if (logger.isDebugEnabled()) {
logger.debug("Starting Job {}. scriptType: {}, script: {}" , id, scriptType, script);
logger.debug("Starting Job {}. scriptType: {}, script: {}", id, scriptType, script);
} else if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
logger.info("Starting Job " + id + ".");
}

View file

@ -265,7 +265,7 @@ public class LabelTypeHelper {
return true;
}
if (logger.isDebugEnabled()) {
logger.debug("Path {} wasn't matched against the include paths expression {}" , path, includedPaths.toString());
logger.debug("Path {} wasn't matched against the include paths expression {}", path, includedPaths.toString());
}
return false;
} else {