From 0d4e200d709ba9e5fb818e3bc47d3f3dbad7d43f Mon Sep 17 00:00:00 2001
From: Gerhard Gonter <ggonter@gmail.com>
Date: Tue, 9 Aug 2022 14:31:12 +0200
Subject: [PATCH] print json conversion error

---
 modules/util/json2tsv.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/util/json2tsv.pl b/modules/util/json2tsv.pl
index b6e3835..8e67e8d 100755
--- a/modules/util/json2tsv.pl
+++ b/modules/util/json2tsv.pl
@@ -108,7 +108,7 @@ sub parse_stream
     eval { $data= from_json($l); };
     if ($@)
     {
-      # print "error: ", $@, "\n";
+      print "error: ", $@, "\n";
       next LINE;
     }
     # print "data: ", Dumper ($data);
-- 
GitLab