From 7ffc9923b568e1270afbdc9138ee36b3b01e9050 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 1 Apr 2020 00:11:19 -0300 Subject: [PATCH] Bug 18227: (QA follow-up) Add fix to koha-common.postinst Now koha-common.postinst has a way to patch log4perl configs on instances, we should patch the Z3950 responder config accordingly, before it is backported to 19.11 or the 20.05 release :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall --- debian/koha-common.postinst | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/koha-common.postinst b/debian/koha-common.postinst index 55f3c14bed..bdc55016e6 100644 --- a/debian/koha-common.postinst +++ b/debian/koha-common.postinst @@ -154,6 +154,7 @@ log4perl.appender.Z3950.filename=/var/log/koha/$site/z3950-error.log log4perl.appender.Z3950.mode=append log4perl.appender.Z3950.layout=PatternLayout log4perl.appender.Z3950.layout.ConversionPattern=[%d] [%p] %m %l %n +log4perl.appender.Z3950.utf8=1 EOF fi -- 2.24.1 (Apple Git-126)