diff --git a/libraries/src/Log/Logger/FormattedtextLogger.php b/libraries/src/Log/Logger/FormattedtextLogger.php index 4ee0be252a03e..874fb5d0ad92a 100644 --- a/libraries/src/Log/Logger/FormattedtextLogger.php +++ b/libraries/src/Log/Logger/FormattedtextLogger.php @@ -40,7 +40,7 @@ class FormattedtextLogger extends Logger * @var string * @since 1.7.0 */ - protected $format = '{DATETIME} {PRIORITY} {CLIENTIP} {CATEGORY} {MESSAGE}'; + protected $format = '{DATETIME} {PRIORITY} {CLIENTIP} {CATEGORY} {MESSAGE}'; /** * The parsed fields from the format string. diff --git a/plugins/system/webauthn/src/Extension/Webauthn.php b/plugins/system/webauthn/src/Extension/Webauthn.php index 5ac91c372e34e..5a69921663a21 100644 --- a/plugins/system/webauthn/src/Extension/Webauthn.php +++ b/plugins/system/webauthn/src/Extension/Webauthn.php @@ -123,7 +123,7 @@ public function __construct(array $config = [], ?Authentication $authHelper = nu Log::addLogger([ 'text_file' => "webauthn_system.php", - 'text_entry_format' => '{DATETIME} {PRIORITY} {CLIENTIP} {MESSAGE}', + 'text_entry_format' => '{DATETIME} {PRIORITY} {CLIENTIP} {MESSAGE}', ], $logLevels, ["webauthn.system"]); $this->authenticationHelper = $authHelper ?? (new Authentication());