Use LOGGER instead of LOG

Use spaces instead of tabs
This commit is contained in:
JULIEN MASNADA
2016-01-13 00:19:41 +01:00
committed by wing328
parent 2161907a8f
commit 2a9ead870c
13 changed files with 39 additions and 39 deletions

View File

@@ -12,11 +12,11 @@ import org.slf4j.LoggerFactory;
public class ConfigParser {
private static final Logger LOG = LoggerFactory.getLogger(ConfigParser.class);
private static final Logger LOGGER = LoggerFactory.getLogger(ConfigParser.class);
public static Config read(String location) {
LOG.debug("reading config from " + location);
LOGGER.debug("reading config from " + location);
ObjectMapper mapper = new ObjectMapper();
@@ -32,11 +32,11 @@ public class ConfigParser {
if (optionNode.getValue().isValueNode()) {
config.setOption(optionNode.getKey(), optionNode.getValue().asText());
} else {
LOG.warn("omitting non-value node " + optionNode.getKey());
LOGGER.warn("omitting non-value node " + optionNode.getKey());
}
}
} catch (Exception e) {
LOG.error(e.getMessage());
LOGGER.error(e.getMessage());
return null;
}