From d557cda55c79b71d319006f4b0cc499a86e9c6d4 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Fri, 1 Jan 2010 22:45:03 +0000 Subject: [PATCH] Clean-up logging. --- deluge/plugins/notifications/notifications/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/plugins/notifications/notifications/core.py b/deluge/plugins/notifications/notifications/core.py index 7c148c9e0..afbb09604 100644 --- a/deluge/plugins/notifications/notifications/core.py +++ b/deluge/plugins/notifications/notifications/core.py @@ -217,10 +217,10 @@ class Core(CorePluginBase, CoreNotifications): CoreNotifications.enable(self) self.config = deluge.configmanager.ConfigManager( "notifications-core.conf", DEFAULT_PREFS) - log.debug("\n\nENABLING CORE NOTIFICATIONS\n\n") + log.debug("ENABLING CORE NOTIFICATIONS") def disable(self): - log.debug("\n\nDISABLING CORE NOTIFICATIONS\n\n") + log.debug("DISABLING CORE NOTIFICATIONS") CoreNotifications.disable(self) @export