From: Michael Date: Tue, 2 Nov 2021 08:06:55 +0000 (+0000) Subject: Improve the JSON output of the log entries X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d56fc6d18f327c3735004283a9dc05650efe86cd;p=friendica.git Improve the JSON output of the log entries --- 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); } /**