$this->setupContainerForAddons();
- $this->setupContainerForLogger(LogChannel::APP);
+ $this->setupLogChannel(LogChannel::APP);
$this->setupLegacyServiceLocator();
{
$this->setupContainerForAddons();
- $this->setupContainerForLogger($this->determineLogChannel($argv));
+ $this->setupLogChannel($this->determineLogChannel($argv));
$this->setupLegacyServiceLocator();
{
$this->setupContainerForAddons();
- $this->setupContainerForLogger(LogChannel::AUTH_JABBERED);
+ $this->setupLogChannel(LogChannel::AUTH_JABBERED);
$this->setupLegacyServiceLocator();
return LogChannel::CONSOLE;
}
- private function setupContainerForLogger(string $logChannel): void
+ private function setupLogChannel(string $logChannel): void
{
/** @var LoggerManager */
$loggerManager = $this->container->create(LoggerManager::class);