[pLog-svn] r4607 - plog/branches/lifetype-1.1.5/config

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sun Jan 28 08:46:07 EST 2007


Author: oscar
Date: 2007-01-28 08:46:07 -0500 (Sun, 28 Jan 2007)
New Revision: 4607

Modified:
   plog/branches/lifetype-1.1.5/config/logging.properties.php
Log:
This should save some trouble for people who are running LT classes outside the LT folder

Modified: plog/branches/lifetype-1.1.5/config/logging.properties.php
===================================================================
--- plog/branches/lifetype-1.1.5/config/logging.properties.php	2007-01-28 13:30:52 UTC (rev 4606)
+++ plog/branches/lifetype-1.1.5/config/logging.properties.php	2007-01-28 13:46:07 UTC (rev 4607)
@@ -4,10 +4,11 @@
 # too much logs for your tatest, set "appender" to "null". This will
 # be disabled once the final version is out anyway...
 #
+
 $config["default"] = Array( 
     "layout"   => "%d %N - [%f:%l (%c:%F)] %m%n", 
     "appender" => "file",
-	"file"     => "tmp/lifetype.log",
+	"file"     => PLOG_CLASS_PATH."tmp/lifetype.log",
     "prio"     => "debug"
   );
 
@@ -16,7 +17,7 @@
 $config["debug"] = Array( 
     "layout"   => "%t%n%d %N - [%f:%l (%c:%F)] %m%n", 
     "appender" => "null",
-	"file"     => "tmp/debug.log",
+	"file"     => PLOG_CLASS_PATH."tmp/debug.log",
     "prio"     => "info"  
   );
 #
@@ -27,7 +28,7 @@
 $config["sqlerr"] = Array( 
     "layout" => "%S%n %d %N - %m%n", 
     "appender" => "file",
-	"file" => "tmp/sql_error.log",
+	"file" => PLOG_CLASS_PATH."tmp/sql_error.log",
     "prio" => "error"
   );
   
@@ -38,7 +39,7 @@
 $config["trackback"] = Array(
     "layout" => "%d %N - [%f:%l (%c:%F)] %m%n", 
     "appender" => "null",
-	"file" => "tmp/trackback.log",
+	"file" => PLOG_CLASS_PATH."tmp/trackback.log",
     "prio" => "debug"
   );
   
@@ -60,7 +61,7 @@
 $config["metricslog"] = Array(
     "layout" => "%m%n", 
     "appender" => "null",
-	"file" => "tmp/metrics.log",
+	"file" => PLOG_CLASS_PATH."tmp/metrics.log",
     "prio" => "debug"
   );  
 



More information about the pLog-svn mailing list