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:
authorVincent Petry <pvince81@owncloud.com>2013-10-23 15:58:42 +0400
committerVincent Petry <pvince81@owncloud.com>2013-10-23 15:58:42 +0400
commitc4dee281e693088e445a075d5f59f54e34a1010b (patch)
tree0cec879416a2c2a23c24debecf186270d5cbaad2 /index.php
parent42c58220def38d5f762dc0c422012b0210577463 (diff)
Added $app parameter to logException
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php2
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);