diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2022-12-06 10:51:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 10:51:57 +0100 |
commit | 48358bb78f5955e982bcd07e7db252ad0ae43819 (patch) | |
tree | f1778866e754b2f80f1053a9f5a136d3631c85ef /lib | |
parent | 67ff8fc738c13dc34a6eacf1effca4ac1e86745a (diff) | |
parent | 94cebfea7ca2ef3e1263e16e3b491b163d3c8c6f (diff) | |
download | nextcloud-server-48358bb78f5955e982bcd07e7db252ad0ae43819.tar.gz nextcloud-server-48358bb78f5955e982bcd07e7db252ad0ae43819.zip |
Merge pull request #35612 from nextcloud/chore/errorlog-rebranding
Adjust branding of errorlog log messages
Diffstat (limited to 'lib')
-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; } |