]> git.mxchange.org Git - friendica.git/blobdiff - src/Factory/SessionFactory.php
Fix HTTPClient
[friendica.git] / src / Factory / SessionFactory.php
index 116afe18a75d095779edbfccd1c278709867d14a..f4d2dd89fd7feb0350238b0ecb8116cd9aed3b9e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -58,7 +58,7 @@ class SessionFactory
         */
        public function createSession(App\Mode $mode, App\BaseURL $baseURL, IConfig $config, Database $dba, ICache $cache, LoggerInterface $logger, Profiler $profiler, array $server = [])
        {
-               $stamp1  = microtime(true);
+               $profiler->startRecording('session');
                $session = null;
 
                try {
@@ -85,7 +85,7 @@ class SessionFactory
                                $session = new Session\Native($baseURL, $handler);
                        }
                } finally {
-                       $profiler->saveTimestamp($stamp1, 'parser');
+                       $profiler->stopRecording();
                        return $session;
                }
        }