From 557c09b466308afceff8e196643a0acb08286102 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 Not needed for storage. You can always display pretty in the interface (on a follow-up report). Signed-off-by: Marcel de Rooy Signed-off-by: Tomas Cohen Arazi --- 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.39.5