aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/App.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/lib/App.php')
-rw-r--r--apps/files/lib/App.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files/lib/App.php b/apps/files/lib/App.php
index e24f204b744..3fb93df6f1d 100644
--- a/apps/files/lib/App.php
+++ b/apps/files/lib/App.php
@@ -16,6 +16,7 @@ use OCP\IURLGenerator;
use OCP\IUserSession;
use OCP\L10N\IFactory;
use OCP\Server;
+use Psr\Log\LoggerInterface;
class App {
private static ?INavigationManager $navigationManager = null;
@@ -32,7 +33,8 @@ class App {
Server::get(IFactory::class),
Server::get(IUserSession::class),
Server::get(IGroupManager::class),
- Server::get(IConfig::class)
+ Server::get(IConfig::class),
+ Server::get(LoggerInterface::class),
);
self::$navigationManager->clear(false);
}