]> git.mxchange.org Git - friendica.git/commitdiff
adding parameter to App
authorPhilipp Holzer <admin@philipp.info>
Sat, 16 Feb 2019 22:18:24 +0000 (23:18 +0100)
committerPhilipp Holzer <admin@philipp.info>
Sat, 16 Feb 2019 22:18:24 +0000 (23:18 +0100)
bin/auth_ejabberd.php
bin/console.php
bin/daemon.php
bin/worker.php
index.php

index 8a5c43c6dfb0ec274f251d415844679f800e47c6..cc2517644cad2382e3c9c70dd08b001b475cca81 100755 (executable)
@@ -58,7 +58,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
 $configLoader = new Config\ConfigCacheLoader($basedir);
 $config = Factory\ConfigFactory::createCache($configLoader);
 $logger = Factory\LoggerFactory::create('auth_ejabberd', $config);
-$profiler = Factory\ProfilerFactory::create($config);
+$profiler = Factory\ProfilerFactory::create($logger, $config);
 
 $a = new App($config, $logger, $profiler);
 
index ceccfc823edc08a0bc324e295da17d34a2459f9e..757af31d5d750850187acfc19f6bcb44bb7e5bb3 100755 (executable)
@@ -11,7 +11,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
 $configLoader = new Config\ConfigCacheLoader($basedir);
 $config = Factory\ConfigFactory::createCache($configLoader);
 $logger = Factory\LoggerFactory::create('console', $config);
-$profiler = Factory\ProfilerFactory::create($config);
+$profiler = Factory\ProfilerFactory::create($logger, $config);
 
 $a = new Friendica\App($config, $logger, $profiler);
 \Friendica\BaseObject::setApp($a);
index 3b5c04b7abe645719a26ec22b0e0a4a96cfb7968..da4bc1992595e87233fb0d4fc0f6f935c3fc372f 100755 (executable)
@@ -37,7 +37,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
 $configLoader = new Config\ConfigCacheLoader($basedir);
 $config = Factory\ConfigFactory::createCache($configLoader);
 $logger = Factory\LoggerFactory::create('daemon', $config);
-$profiler = Factory\ProfilerFactory::create($config);
+$profiler = Factory\ProfilerFactory::create($logger, $config);
 
 $a = new App($config, $logger, $profiler);
 
index c93abaf0fedc2a454c2fc46006e30ace4434b2d8..9b396c6f9c5d978eeec51f570f55430970993854 100755 (executable)
@@ -35,7 +35,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
 $configLoader = new Config\ConfigCacheLoader($basedir);
 $config = Factory\ConfigFactory::createCache($configLoader);
 $logger = Factory\LoggerFactory::create('worker', $config);
-$profiler = Factory\ProfilerFactory::create($config);
+$profiler = Factory\ProfilerFactory::create($logger, $config);
 
 $a = new App($config, $logger, $profiler);
 
index d8c233be23a1ef2e09d639d49ec9c10cb6cb4cab..216fbe90add90fedf84f5b7b3af9883f737b7291 100644 (file)
--- a/index.php
+++ b/index.php
@@ -19,7 +19,7 @@ $basedir = BasePath::create(__DIR__, $_SERVER);
 $configLoader = new Config\ConfigCacheLoader($basedir);
 $config = Factory\ConfigFactory::createCache($configLoader);
 $logger = Factory\LoggerFactory::create('index', $config);
-$profiler = Factory\ProfilerFactory::create($config);
+$profiler = Factory\ProfilerFactory::create($logger, $config);
 
 // We assume that the index.php is called by a frontend process
 // The value is set to "true" by default in App