* avoid special logger clashing with normal logging namespaces

This commit is contained in:
Reinhard Pointner 2012-07-25 04:28:18 +00:00
parent a95b983e73
commit 581fd76265
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import java.util.logging.Logger;
class CLILogging extends Handler {
public static final Logger CLILogger = createCommandlineLogger("net.sourceforge.filebot.cli");
public static final Logger CLILogger = createCommandlineLogger("net.sourceforge.filebot.logger.cli");
private static Logger createCommandlineLogger(String name) {

View File

@ -24,7 +24,7 @@ import net.sourceforge.tuned.ui.notification.QueueNotificationLayout;
public class NotificationLogging extends Handler {
public static final Logger UILogger = createNotificationLogger("net.sourceforge.filebot.ui");
public static final Logger UILogger = createNotificationLogger("net.sourceforge.filebot.logger.ui");
private static Logger createNotificationLogger(String name) {