Skip to content

Commit 7d2926c

Browse files
committed
changing log file name. Old name was clashing with the default laravel log dily format
1 parent 68e19f4 commit 7d2926c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Factories/LogKeeperServiceFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static function buildFromConfig(array $config)
1818
$logger = new Logger('laravel-log-keeper');
1919

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

0 commit comments

Comments
 (0)