Fix copy and paste error in Logger

This commit is contained in:
Richard Cordovano 2014-05-16 10:15:11 -04:00
parent e437fbe95f
commit d0f06d11d2

View File

@ -73,7 +73,7 @@ public final class Logger extends java.util.logging.Logger {
* @return org.sleuthkit.autopsy.coreutils.Logger instance * @return org.sleuthkit.autopsy.coreutils.Logger instance
*/ */
public static Logger getLogger(String name, String resourceBundleName) { public static Logger getLogger(String name, String resourceBundleName) {
return new Logger(java.util.logging.Logger.getLogger(name)); return new Logger(java.util.logging.Logger.getLogger(name, resourceBundleName));
} }
private Logger(java.util.logging.Logger log) { private Logger(java.util.logging.Logger log) {