Skip to content

Commit

Permalink
changing log file name. Old name was clashing with the default larave…
Browse files Browse the repository at this point in the history
…l log dily format
  • Loading branch information
mathiasgrimm committed Mar 24, 2016
1 parent 68e19f4 commit 7d2926c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Factories/LogKeeperServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function buildFromConfig(array $config)
$logger = new Logger('laravel-log-keeper');

if ($config['log']) {
$logger->pushHandler(new RotatingFileHandler(storage_path('logs') . '/laravel-log-keeper.log', 365, Logger::INFO));
$logger->pushHandler(new RotatingFileHandler(storage_path('logs') . '/laravellogkeeper.log', 365, Logger::INFO));
} else {
$logger->pushHandler(new NullHandler());
}
Expand Down

0 comments on commit 7d2926c

Please sign in to comment.