Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-01-23 13:56:02 +0300
committerGitHub <noreply@github.com>2018-01-23 13:56:02 +0300
commit4537faa5dabdcb2f0b888baa5031e59099e52d6a (patch)
tree0295177ddd5f6736739c503131eb75323561b220 /lib/base.php
parent9cb3a79b18bb74e3f79d53aa400d7efa5b2c2174 (diff)
parent2a38605545e26ce68a37e5ebb877fd9c9875a37d (diff)
Merge pull request #7918 from nextcloud/properly-log-exceptions
Properly log the full exception instead of only the message
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 99651479dfa..6e66005b28f 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -809,7 +809,11 @@ class OC {
} catch (\Exception $e) {
// a GC exception should not prevent users from using OC,
// so log the exception
- \OC::$server->getLogger()->warning('Exception when running cache gc: ' . $e->getMessage(), array('app' => 'core'));
+ \OC::$server->getLogger()->logException($e, [
+ 'message' => 'Exception when running cache gc.',
+ 'level' => \OCP\Util::WARN,
+ 'app' => 'core',
+ ]);
}
});
}