From 0e439bc89abeb8591a4fdd873b6136adfbc70cbc Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 22 Feb 2023 13:50:10 +0000 Subject: [PATCH] Bug 32057: (QA follow-up) Remove pretty flag Content-Type: text/plain; charset=utf-8 Not needed for storage. You can always display pretty in the interface (on a follow-up report). Signed-off-by: Marcel de Rooy --- C4/Log.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Log.pm b/C4/Log.pm index 08194a0530..d16d4236c5 100644 --- a/C4/Log.pm +++ b/C4/Log.pm @@ -110,7 +110,7 @@ sub logaction { } ); } - my $trace = @trace ? to_json( \@trace, { utf8 => 1, pretty => 1 } ) : undef; + my $trace = @trace ? to_json( \@trace, { utf8 => 1, pretty => 0 } ) : undef; Koha::ActionLog->new( { -- 2.30.2