Revert "Add monolog"

This commit is contained in:
Hypolite Petovan 2019-01-03 23:25:06 -05:00
parent 13e4dd0163
commit 2f49c4a058
18 changed files with 165 additions and 698 deletions

View file

@ -6,8 +6,6 @@ namespace Friendica;
require_once 'boot.php';
use Friendica\Util\LoggerFactory;
/**
* Basic object
*
@ -27,8 +25,7 @@ class BaseObject
public static function getApp()
{
if (empty(self::$app)) {
$logger = $logger = LoggerFactory::create('app');
self::$app = new App(dirname(__DIR__), $logger);
self::$app = new App(dirname(__DIR__));
}
return self::$app;