]> source.dussan.org Git - nextcloud-server.git/commitdiff
chore(logging): Fix branding of errorlog log messages 35612/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 5 Dec 2022 18:25:47 +0000 (19:25 +0100)
committerChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 5 Dec 2022 18:28:05 +0000 (19:28 +0100)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
lib/private/Log/Errorlog.php

index d27759d70508dc82018d648fbb203a2390a19139..7fca04d8b34f14b04bea6a8967e5c3f71ba7626f 100644 (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;
        }