diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-23 13:58:42 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-23 13:58:42 +0200 |
commit | c4dee281e693088e445a075d5f59f54e34a1010b (patch) | |
tree | 0cec879416a2c2a23c24debecf186270d5cbaad2 /index.php | |
parent | 42c58220def38d5f762dc0c422012b0210577463 (diff) | |
download | nextcloud-server-c4dee281e693088e445a075d5f59f54e34a1010b.tar.gz nextcloud-server-c4dee281e693088e445a075d5f59f54e34a1010b.zip |
Added $app parameter to logException
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php index ab7333cf0e6..0a2f15f9f5e 100755 --- a/index.php +++ b/index.php @@ -30,7 +30,7 @@ try { OC::handleRequest(); } catch (Exception $ex) { - \OCP\Util::logException($ex); + \OCP\Util::logException('index', $ex); //show the user a detailed error page OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); |