From d56fc6d18f327c3735004283a9dc05650efe86cd Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 Nov 2021 08:06:55 +0000 Subject: [PATCH] Improve the JSON output of the log entries --- src/Core/Logger/Type/AbstractLogger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Logger/Type/AbstractLogger.php b/src/Core/Logger/Type/AbstractLogger.php index e26f1705d4..e7e711d7ec 100644 --- a/src/Core/Logger/Type/AbstractLogger.php +++ b/src/Core/Logger/Type/AbstractLogger.php @@ -129,7 +129,7 @@ abstract class AbstractLogger implements LoggerInterface } } - return @json_encode($output); + return @json_encode($output, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); } /**