Skip to content

Commit 939b6c9

Browse files
committed
Fix wrong class name, exception was not caught
1 parent beadbd7 commit 939b6c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Models/Log.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function setFile(string $filename) {
2727
try {
2828
$this->parser->setFile($filename);
2929
}
30-
catch(\Devdot\Monolog\Parser\Exceptions\FileNotFoundException $e) {
30+
catch(\Devdot\Monolog\Exceptions\FileNotFoundException $e) {
3131
return false;
3232
}
3333
return true;

0 commit comments

Comments
 (0)