summaryrefslogtreecommitdiffstats
path: root/appinfo/app.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 20:14:00 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-13 20:14:00 +0200
commitf82b818bdb852f63fdb4a431808f37902f4272ff (patch)
tree60e23d0b4b95a5f862661f3ad4fcc8cfa21f076f /appinfo/app.php
parentc9c7b457a09ed3f1899099bba60dad21ff6ad026 (diff)
break all the things!
Diffstat (limited to 'appinfo/app.php')
-rw-r--r--appinfo/app.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index 1cc9994ae..ebd5f47a7 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -25,6 +25,8 @@ $config->registerHooks();
try {
$config->testDependencies();
} catch(\OCA\News\Config\DependencyException $e) {
- $container->getLogger()->log($e->getMessage());
+ $logger = $container->getLogger();
+ $params = $container->getLoggerParameters();
+ $logger->warn($e->getMessage(), $params);
}