mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 00:27:49 -04:00
fix(logging): Fix array to string conversion in errorlog writer
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
bba890822b
commit
0e56c19f8d
1 changed files with 2 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ class Errorlog extends LogDetails implements IWriter {
|
|||
/** @var string */
|
||||
protected $tag;
|
||||
|
||||
public function __construct(string $tag = 'owncloud') {
|
||||
public function __construct(SystemConfig $config, string $tag = 'owncloud') {
|
||||
parent::__construct($config);
|
||||
$this->tag = $tag;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue