Skip to content
Snippets Groups Projects
Commit da8781e4 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #23443 from owncloud/some-more-logging-information

Log more information by default
parents 5e4f9b86 7adae447
No related branches found
No related tags found
No related merge requests found
...@@ -88,14 +88,21 @@ class OC_Log_Owncloud { ...@@ -88,14 +88,21 @@ class OC_Log_Owncloud {
$remoteAddr = $request->getRemoteAddress(); $remoteAddr = $request->getRemoteAddress();
// remove username/passwords from URLs before writing the to the log file // remove username/passwords from URLs before writing the to the log file
$time = $time->format($format); $time = $time->format($format);
$minLevel=min($config->getValue( "loglevel", \OCP\Util::WARN ), \OCP\Util::ERROR); $url = ($request->getRequestUri() !== '') ? $request->getRequestUri() : '--';
if($minLevel == \OCP\Util::DEBUG) { $method = is_string($request->getMethod()) ? $request->getMethod() : '--';
$url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '--'; $userObj = \OC::$server->getUserSession()->getUser();
$method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : '--'; $user = !is_null($userObj) ? $userObj->getUID() : '--';
$entry = compact('reqId', 'remoteAddr', 'app', 'message', 'level', 'time', 'method', 'url'); $entry = compact(
} else { 'reqId',
$entry = compact('reqId', 'remoteAddr', 'app', 'message', 'level', 'time'); 'remoteAddr',
} 'app',
'message',
'level',
'time',
'method',
'url',
'user'
);
$entry = json_encode($entry); $entry = json_encode($entry);
$handle = @fopen(self::$logFile, 'a'); $handle = @fopen(self::$logFile, 'a');
@chmod(self::$logFile, 0640); @chmod(self::$logFile, 0640);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment