diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-25 17:45:42 +0300 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-25 17:45:42 +0300 |
commit | 9c9bfcd6261909963621162b2fd56cb33cba514a (patch) | |
tree | aa45a110d89ee6fe29b99a8ae05c02f4debc20c5 | |
parent | 39cca72964bb4cd7422ccf30c5fc2313570fd818 (diff) | |
download | nextcloud-server-9c9bfcd6261909963621162b2fd56cb33cba514a.tar.gz nextcloud-server-9c9bfcd6261909963621162b2fd56cb33cba514a.zip |
log as index, not remote
-rwxr-xr-x | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php index a064aa5c76f..90fd3efcc96 100755 --- a/index.php +++ b/index.php @@ -32,6 +32,6 @@ try { } catch (Exception $ex) { //show the user a detailed error page OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); - \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); + \OCP\Util::writeLog('index', $ex->getMessage(), \OCP\Util::FATAL); OC_Template::printExceptionErrorPage($ex); -}
\ No newline at end of file +} |