]> git.mxchange.org Git - friendica.git/blobdiff - src/App/Page.php
Merge pull request #11647 from Quix0r/fixes/type-error-exception
[friendica.git] / src / App / Page.php
index 8986d4aa91c11c6c7668998c4d88e03702966ddb..d38757687c99929bd62b8055fa7d78be1ac6a317 100644 (file)
@@ -79,9 +79,9 @@ class Page implements ArrayAccess
         */
        private $basePath;
 
-       private $timestamp  = 0;
-       private $moduleName = '';
-       private $method     = '';
+       private $timestamp = 0;
+       private $command   = '';
+       private $method    = '';
 
        /**
         * @param string $basepath The Page basepath
@@ -92,16 +92,22 @@ class Page implements ArrayAccess
                $this->basePath = $basepath;
        }
 
-       public function setLogging(string $moduleName, string $method)
+       public function setLogging(string $command, string $method)
        {
-               $this->moduleName = $moduleName;
-               $this->method     = $method;
+               $this->command = $command;
+               $this->method  = $method;
        }
 
-       public function logRuntime()
+       public function logRuntime(IManageConfigValues $config, string $origin = '')
        {
+               if (in_array($this->command, $config->get('system', 'runtime_ignore'))) {
+                       return;
+               }
+
                $runtime = number_format(microtime(true) - $this->timestamp, 3);
-               Logger::debug('Runtime', ['method' => $this->method, 'module' => $this->moduleName, 'runtime' => $runtime]);
+               if ($runtime > $config->get('system', 'runtime_loglimit')) {
+                       Logger::debug('Runtime', ['method' => $this->method, 'command' => $this->command, 'runtime' => $runtime, 'origin' => $origin]);
+               }
        }
 
        /**
@@ -419,7 +425,6 @@ class Page implements ArrayAccess
                }
 
                echo $response->getBody();
-               $this->logRuntime();
        }
 
        /**
@@ -440,8 +445,8 @@ class Page implements ArrayAccess
        {
                $moduleName = $args->getModuleName();
 
-               $this->moduleName = $moduleName;
-               $this->method     = $args->getMethod();
+               $this->command = $moduleName;
+               $this->method  = $args->getMethod();
 
                /* Create the page content.
                 * Calls all hooks which are including content operations