Log youtube-dl and ffmpeg commands (fixes #297)

This commit is contained in:
Pierre Rudloff 2020-07-15 22:39:46 +02:00
parent 7e575e1bb2
commit 96a75cbf14
6 changed files with 359 additions and 310 deletions

View file

@ -11,6 +11,7 @@ use Alltube\Controller\DownloadController;
use Alltube\Controller\FrontController;
use Alltube\Exception\ConfigException;
use Alltube\LocaleManager;
use Alltube\LoggerFactory;
use Alltube\ViewFactory;
use Slim\Container;
use Slim\Http\Environment;
@ -63,6 +64,7 @@ abstract class ControllerTest extends BaseTest
$this->response = new Response();
$this->container['locale'] = LocaleManager::getInstance();
$this->container['view'] = ViewFactory::create($this->container, $this->request);
$this->container['logger'] = LoggerFactory::create();
$frontController = new FrontController($this->container);
$downloadController = new DownloadController($this->container);