We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4275dd0 commit fe924e8Copy full SHA for fe924e8
app/Providers/AppServiceProvider.php
@@ -3,6 +3,8 @@
3
namespace App\Providers;
4
5
use App\Models\Thread;
6
+use Psr\Log\LoggerInterface;
7
+use Illuminate\Contracts\Logging\Log;
8
use Illuminate\Support\ServiceProvider;
9
use Illuminate\Database\Eloquent\Relations\Relation;
10
@@ -25,4 +27,10 @@ public function bootMacros()
25
27
{
26
28
require base_path('resources/macros/blade.php');
29
}
30
+
31
+ public function register()
32
+ {
33
+ $this->app->alias('bugsnag.multi', Log::class);
34
+ $this->app->alias('bugsnag.multi', LoggerInterface::class);
35
+ }
36
0 commit comments