chore(logging): Fix branding of errorlog log messages

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2022-12-05 19:25:47 +01:00
parent e36e92bace
commit 94cebfea7c
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -1,4 +1,7 @@
<?php
declare(strict_types=1);
/**
* The MIT License (MIT)
*
@ -32,7 +35,7 @@ class Errorlog implements IWriter {
/** @var string */
protected $tag;
public function __construct(string $tag = 'owncloud') {
public function __construct(string $tag = 'nextcloud') {
$this->tag = $tag;
}