diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 12:54:36 -0800 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 12:54:36 -0800 |
commit | 9058d398a7b9aac58ab4aa7379e13ca83c72281d (patch) | |
tree | 7aaa55510ab15435efc2f36cf5628f5763f3ce02 /lib/log.php | |
parent | 4320f23c87ab6b43a31b8dcb0c6e44127438f123 (diff) | |
parent | ffae6f4b847e96d691053300c355ab81edc6c1c8 (diff) | |
download | nextcloud-server-9058d398a7b9aac58ab4aa7379e13ca83c72281d.tar.gz nextcloud-server-9058d398a7b9aac58ab4aa7379e13ca83c72281d.zip |
Merge pull request #1662 from owncloud/style-cleanup
Style cleanup
Diffstat (limited to 'lib/log.php')
-rw-r--r-- | lib/log.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/log.php b/lib/log.php index e869282e88c..3f3334801e5 100644 --- a/lib/log.php +++ b/lib/log.php @@ -53,7 +53,9 @@ class OC_Log { // Uncaught exception handler public static function onException($exception) { - self::write('PHP', $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), self::FATAL); + self::write('PHP', + $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), + self::FATAL); } //Recoverable errors handler |