Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rizwanjiwan authored Oct 2, 2020
1 parent e283556 commit bf35362
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/classes/LogManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static function createLogger($name=null)
private static function createFileLogger()
{
//self::debug('Creating file logger.');
self::$baseLogger = new Logger('Canlytics');
self::$baseLogger = new Logger('Common');
//set up a buffered html and rotating file handler as our defaults for every case
$logLev=self::getLogLevel();
if(self::$htmlLogging)
Expand All @@ -109,7 +109,7 @@ private static function createFileLogger()
private static function createDbLogger()
{
//self::debug('creating db logger');
self::$baseLogger = new Logger('Canlytics');
self::$baseLogger = new Logger('Common');
//set up a buffered html and rotating file handler as our defaults for every case
$logLev=self::getLogLevel();
if(self::$htmlLogging)
Expand Down Expand Up @@ -222,4 +222,4 @@ public static function truncateLog($daysAgo=30)
}
}

}
}

0 comments on commit bf35362

Please sign in to comment.