Skip to content
Snippets Groups Projects
Commit 512b9cf3 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Remove superfluous log message

If we reach this point, we're likely already logging the error somewhere else (i.e. the session handler in use), so there's no point on logging the exception's message again.
parent 04816142
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,6 @@ class Logger
$s = Session::getSessionFromRequest();
} catch (\Exception $e) {
// loading session failed. We don't care why, at this point we have a transient session, so we use that
self::error('Cannot load or create session: '.$e->getMessage());
$s = Session::getSessionFromRequest();
}
self::$trackid = $s->getTrackID();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment