mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Simpler log unique id.
This commit is contained in:
parent
f9dbdb7c5c
commit
428510a4f8
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class OC_Log_Owncloud {
|
|||
$time = $time->format($format);
|
||||
if($minLevel == OC_Log::DEBUG) {
|
||||
if(empty(self::$reqId)) {
|
||||
self::$reqId = uniqid(microtime(true));
|
||||
self::$reqId = uniqid();
|
||||
}
|
||||
$reqId = self::$reqId;
|
||||
$url = $_SERVER['REQUEST_URI'];
|
||||
|
|
|
|||
Loading…
Reference in a new issue