fix package in HandlerUtils

This commit is contained in:
Costin Leau
2012-07-16 14:28:16 +03:00
parent b353e3e307
commit 168dce2b50

View File

@@ -48,7 +48,7 @@ public abstract class HandlerUtils {
public static Logger getLogger(final Class<?> clazz) {
Assert.notNull(clazz, "Class required");
Logger logger = Logger.getLogger(clazz.getName());
if (logger.getLevel() == null && clazz.getName().startsWith("org.springframework.roo")) {
if (logger.getLevel() == null && clazz.getName().startsWith("org.springframework.shell")) {
logger.setLevel(Level.FINE);
}
return logger;