summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-11-14 18:04:52 +0100
committerRobin Appelman <robin@icewind.nl>2018-11-14 18:04:52 +0100
commit2482e8ee3429ebca2baf49c69929983a2c578736 (patch)
treed3fc1deab61dfc800d39121cf46fc3f40beb2d55 /lib
parentfef51895c2689275805bc166bc3f5be95a836b35 (diff)
downloadnextcloud-server-2482e8ee3429ebca2baf49c69929983a2c578736.tar.gz
nextcloud-server-2482e8ee3429ebca2baf49c69929983a2c578736.zip
Log invalid settings class
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Settings/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php
index 036f1ed594f..42ec16e223b 100644
--- a/lib/private/Settings/Manager.php
+++ b/lib/private/Settings/Manager.php
@@ -167,7 +167,7 @@ class Manager implements IManager {
}
if (!$setting instanceof ISettings) {
- $this->log->logException(new \InvalidArgumentException('Invalid settings setting registered'), ['level' => ILogger::INFO]);
+ $this->log->logException(new \InvalidArgumentException('Invalid settings setting registered (' . $class . ')'), ['level' => ILogger::INFO]);
continue;
}