diff options
author | Robin Appelman <robin@icewind.nl> | 2018-03-22 15:52:46 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-04-10 15:53:43 +0200 |
commit | b9583c6dceae92bec87392bd9a4dc3fcdb208f4c (patch) | |
tree | 363fc32e1269df58fa8589d348e748388004e69e /lib/private/Log | |
parent | 123d9f0ce960a3ed0010bc8bcd86273d25ce2d50 (diff) | |
download | nextcloud-server-b9583c6dceae92bec87392bd9a4dc3fcdb208f4c.tar.gz nextcloud-server-b9583c6dceae92bec87392bd9a4dc3fcdb208f4c.zip |
Log exceptions as nested array instead of encoded json
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Log')
-rw-r--r-- | lib/private/Log/File.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Log/File.php b/lib/private/Log/File.php index ba5027251d7..2d7e4b6c14f 100644 --- a/lib/private/Log/File.php +++ b/lib/private/Log/File.php @@ -72,7 +72,7 @@ class File { /** * write a message in the log * @param string $app - * @param string $message + * @param string|array $message * @param int $level */ public static function write($app, $message, $level) { |