Changeset 2156
- Timestamp:
- 02/23/2008 01:33:37 AM (9 months ago)
- Location:
- trunk/system
- Files:
-
- 2 modified
-
config/log.php (modified) (1 diff)
-
core/Log.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/log.php
r1668 r2156 28 28 29 29 /** 30 * Log file name prefix; can be blank. 31 */ 32 $config['prefix'] = ''; 33 34 /** 30 35 * PHP date format for timestamps. 31 36 * @see http://php.net/date -
trunk/system/core/Log.php
r1930 r2156 62 62 63 63 // Set the log filename 64 $filename = self::$log_directory. date('Y-m-d').'.log'.EXT;64 $filename = self::$log_directory.Config::item('log.prefix').date('Y-m-d').'.log'.EXT; 65 65 66 66 // Compile the messages
