summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-04-04 12:56:37 +0200
committerGitHub <noreply@github.com>2022-04-04 12:56:37 +0200
commit135bdb3d5830672214149fa0b75fadd29b20b844 (patch)
treef2c1bc68c733829c90090f71d712f78efbc77083 /lib/base.php
parent498d3aea060ed496e2b5351108718e198b021d00 (diff)
parent7d272c54d013538746d6731097ec37f360effb5d (diff)
downloadnextcloud-server-135bdb3d5830672214149fa0b75fadd29b20b844.tar.gz
nextcloud-server-135bdb3d5830672214149fa0b75fadd29b20b844.zip
Merge pull request #30823 from nextcloud/work/profiler
Built-in profiler This adds the required API for collecting information about requests. This information can then be displayed with the new 'profiler' app.
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php
index f3c3e4f31cb..21889272dd7 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -608,6 +608,7 @@ class OC {
$eventLogger->end('request');
});
$eventLogger->start('boot', 'Initialize');
+ $eventLogger->start('runtime', 'Runtime (total - autoloader)');
// Override php.ini and log everything if we're troubleshooting
if (self::$config->getValue('loglevel') === ILogger::DEBUG) {