[tuxdroid-svn] r1231 - software_suite_v2/middleware/tuxdriver/trunk/src
Status: Beta
Brought to you by:
ks156
From: remi <c2m...@c2...> - 2008-06-12 22:20:16
|
Author: remi Date: 2008-06-13 00:20:24 +0200 (Fri, 13 Jun 2008) New Revision: 1231 Modified: software_suite_v2/middleware/tuxdriver/trunk/src/log.c Log: * Changed the path of the log file Modified: software_suite_v2/middleware/tuxdriver/trunk/src/log.c =================================================================== --- software_suite_v2/middleware/tuxdriver/trunk/src/log.c 2008-06-12 22:16:14 UTC (rev 1230) +++ software_suite_v2/middleware/tuxdriver/trunk/src/log.c 2008-06-12 22:20:24 UTC (rev 1231) @@ -27,9 +27,9 @@ /** Name of log file for target LOG_TARGET_TUX */ #ifdef WIN32 -# define LOG_FILE "tux_driver.log" +# define LOG_FILE "c:\\windows\\libtuxdriver.log" #else -# define LOG_FILE "/var/log/tux_driver.log" +# define LOG_FILE "/var/log/libtuxdriver.log" #endif /** All logged messages are prefixed with this text */ |