* avoid special logger clashing with normal logging namespaces
This commit is contained in:
parent
a95b983e73
commit
581fd76265
|
@ -13,7 +13,7 @@ import java.util.logging.Logger;
|
||||||
|
|
||||||
class CLILogging extends Handler {
|
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) {
|
private static Logger createCommandlineLogger(String name) {
|
||||||
|
|
|
@ -24,7 +24,7 @@ import net.sourceforge.tuned.ui.notification.QueueNotificationLayout;
|
||||||
|
|
||||||
public class NotificationLogging extends Handler {
|
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) {
|
private static Logger createNotificationLogger(String name) {
|
||||||
|
|
Loading…
Reference in New Issue