aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/Log.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/classes/Log.php')
-rw-r--r--lib/classes/Log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/Log.php b/lib/classes/Log.php
index 7f6d360..4bb0e9d 100644
--- a/lib/classes/Log.php
+++ b/lib/classes/Log.php
@@ -39,7 +39,7 @@ class Log
public static function getInstance(): LoggerInterface
{
if (!isset(static::$instance)) {
- static::$instance = studipApp(LoggerInterface::class);
+ static::$instance = app(LoggerInterface::class);
}
return static::$instance;