Skip to content

Commit 6cfc1ca

Browse files
committed
ICL: icl => iclogger.
1 parent 7417b29 commit 6cfc1ca

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Log/ExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function __construct()
1515
{
1616
$this->registerShutdownFunction();
1717

18-
parent::__construct(app('log.icl'));
18+
parent::__construct(app('log.iclogger'));
1919
}
2020

2121
public function report(Exception $e)

src/Loggable.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ protected function initializeLogging()
4444

4545
private function initializeErrorHandling()
4646
{
47-
app()->singleton('log.icl', function () {
48-
return new Logger('ICL', $this->getLogHandlers());
47+
app()->singleton('log.iclogger', function () {
48+
return new Logger('ICLogger', $this->getLogHandlers());
4949
});
50-
$this->icLogger = app('log.icl');
50+
$this->icLogger = app('log.iclogger');
5151

5252
app()->singleton(ExceptionHandlerContract::class, ExceptionHandler::class);
5353
app(ExceptionHandlerContract::class);

0 commit comments

Comments
 (0)