mirror of
https://github.com/friendica/friendica
synced 2025-01-19 14:59:46 +00:00
Fix code style
This commit is contained in:
parent
510f4e02c8
commit
7ebb57c82b
2 changed files with 4 additions and 4 deletions
|
@ -55,9 +55,9 @@ final class LoggerManager
|
|||
$this->config = $config;
|
||||
$this->factory = $factory;
|
||||
|
||||
$this->debug = (bool) $config->get('system', 'debugging') ?? false;
|
||||
$this->logLevel = (string) $config->get('system', 'loglevel') ?? LogLevel::NOTICE;
|
||||
$this->profiling = (bool) $config->get('system', 'profiling') ?? false;
|
||||
$this->debug = (bool) $config->get('system', 'debugging') ?? false;
|
||||
$this->logLevel = (string) $config->get('system', 'loglevel') ?? LogLevel::NOTICE;
|
||||
$this->profiling = (bool) $config->get('system', 'profiling') ?? false;
|
||||
}
|
||||
|
||||
public function changeLogChannel(string $logChannel): void
|
||||
|
|
|
@ -543,7 +543,7 @@ class Worker
|
|||
|
||||
$logger = DI::logger();
|
||||
|
||||
if ($logger instanceOf WorkerLogger) {
|
||||
if ($logger instanceof WorkerLogger) {
|
||||
$logger->setFunctionName($funcname);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue