[tuxdroid-svn] r5374 - software_suite_v3/smart-core/smart-server/branches/user_mode/resources/00_sm
Status: Beta
Brought to you by:
ks156
|
From: ks156 <c2m...@c2...> - 2009-09-14 11:10:06
|
Author: ks156
Date: 2009-09-14 13:09:54 +0200 (Mon, 14 Sep 2009)
New Revision: 5374
Modified:
software_suite_v3/smart-core/smart-server/branches/user_mode/resources/00_smart_server_base/04_resourceMenu.py
Log:
* Changed the log path for the debug page.
Modified: software_suite_v3/smart-core/smart-server/branches/user_mode/resources/00_smart_server_base/04_resourceMenu.py
===================================================================
--- software_suite_v3/smart-core/smart-server/branches/user_mode/resources/00_smart_server_base/04_resourceMenu.py 2009-09-14 11:06:02 UTC (rev 5373)
+++ software_suite_v3/smart-core/smart-server/branches/user_mode/resources/00_smart_server_base/04_resourceMenu.py 2009-09-14 11:09:54 UTC (rev 5374)
@@ -224,7 +224,9 @@
self.__logPath = os.path.join(os.environ['ALLUSERSPROFILE'],
"Kysoh", "Tux Droid", "logs")
else:
- self.__logPath = "/var/log/tuxdroid"
+ from util.misc.systemPaths import systemPaths
+ path = systemPaths.getLogPath()
+ self.__logPath = path
# --------------------------------------------------------------------------
# Execute the service.
|