mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #32429 from nextcloud/fix/profiler-data-loca
This commit is contained in:
commit
04cb02b968
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class Profiler implements IProfiler {
|
|||
public function __construct(SystemConfig $config) {
|
||||
$this->enabled = $config->getValue('profiler', false);
|
||||
if ($this->enabled) {
|
||||
$this->storage = new FileProfilerStorage($config->getValue('datadirectory', \OC::$SERVERROOT . '/data') . '/profiler');
|
||||
$this->storage = new FileProfilerStorage($config->getValue('datadirectory', \OC::$SERVERROOT . '/data') . '/__profiler');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue