diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-12-05 19:25:47 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-12-05 19:28:05 +0100 |
commit | 94cebfea7ca2ef3e1263e16e3b491b163d3c8c6f (patch) | |
tree | 62fb248718b164f3b30fa8f64144c7771acbf532 /lib/private/Log | |
parent | e36e92bacefeac0cf28888b3e528ab97cbc2ed9f (diff) | |
download | nextcloud-server-94cebfea7ca2ef3e1263e16e3b491b163d3c8c6f.tar.gz nextcloud-server-94cebfea7ca2ef3e1263e16e3b491b163d3c8c6f.zip |
chore(logging): Fix branding of errorlog log messages
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Log')
-rw-r--r-- | lib/private/Log/Errorlog.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Log/Errorlog.php b/lib/private/Log/Errorlog.php index d27759d7050..7fca04d8b34 100644 --- a/lib/private/Log/Errorlog.php +++ b/lib/private/Log/Errorlog.php @@ -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; } |