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 29 * @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
30 30 * @package lib
31 31 */
32   -class Log {
  32 +class KTLegacyLog {
33 33 /**
34 34 * The minimum logging level- log everything with
35 35 * this error level and higher
... ... @@ -53,7 +53,7 @@ class Log {
53 53 * @param int the desired level to log at
54 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 57 $this->logDirectory = $logDirectory;
58 58 $this->minimumLoggingLevel = $logLevel;
59 59 $this->sLogFilePrefix = $sLogFilePrefix;
... ...