Commit c6c75cb42c3e7761b16b61ee3d0d50da50718fa6

Authored by nbm
1 parent 59421826

Rename the legacy Log class to KTLegacyLog


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3151 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 2 additions and 2 deletions
lib/Log.inc
@@ -29,7 +29,7 @@ define("ERROR", 2); @@ -29,7 +29,7 @@ define("ERROR", 2);
29 * @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa 29 * @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
30 * @package lib 30 * @package lib
31 */ 31 */
32 -class Log { 32 +class KTLegacyLog {
33 /** 33 /**
34 * The minimum logging level- log everything with 34 * The minimum logging level- log everything with
35 * this error level and higher 35 * this error level and higher
@@ -53,7 +53,7 @@ class Log { @@ -53,7 +53,7 @@ class Log {
53 * @param int the desired level to log at 53 * @param int the desired level to log at
54 * @param string log file name prefix 54 * @param string log file name prefix
55 */ 55 */
56 - function Log($logDirectory, $logLevel = INFO, $sLogFilePrefix = "log") { 56 + function KTLegacyLog($logDirectory, $logLevel = INFO, $sLogFilePrefix = "log") {
57 $this->logDirectory = $logDirectory; 57 $this->logDirectory = $logDirectory;
58 $this->minimumLoggingLevel = $logLevel; 58 $this->minimumLoggingLevel = $logLevel;
59 $this->sLogFilePrefix = $sLogFilePrefix; 59 $this->sLogFilePrefix = $sLogFilePrefix;