[tuxdroid-svn] r4722 - software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-02 14:33:24
|
Author: remi
Date: 2009-06-02 16:33:18 +0200 (Tue, 02 Jun 2009)
New Revision: 4722
Modified:
software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py
Log:
* updated log level to debug
* added white spaces in the log message of actuation event
Modified: software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py 2009-06-02 13:24:59 UTC (rev 4721)
+++ software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/01_resourcePluginsServer.py 2009-06-02 14:33:18 UTC (rev 4722)
@@ -48,7 +48,7 @@
# Create a logger
self.logger = SimpleLogger("plugins_server")
self.logger.resetLog()
- self.logger.setLevel(TDS_CONF_LOG_LEVEL)
+ self.logger.setLevel(LOG_LEVEL_DEBUG)
self.logger.setTarget(TDS_CONF_LOG_TARGET)
self.logger.logInfo("-----------------------------------------------")
self.logger.logInfo("Smart-core Plugins Server")
@@ -177,7 +177,7 @@
def __onPluginActuation(self, plugin, instanceParameters, *messagesList):
messageStr = ""
for message in messagesList:
- messageStr += message
+ messageStr += " " + message
self.logger.logDebug("Plugin ACTUATION [%s] (%s)" % (
plugin.getDescription().getName(), messageStr))
|