From 4a73d3131d5c941609de86bebdbfbe72483937a0 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Wed, 3 Jul 2019 11:09:45 +0200 Subject: [PATCH] More detailed logs --- lib/src/Event.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/Event.dart b/lib/src/Event.dart index 7a2e569..51ed072 100644 --- a/lib/src/Event.dart +++ b/lib/src/Event.dart @@ -134,7 +134,8 @@ class Event { try { content = json.decode(jsonObj["content_json"]); } catch (e) { - print("jsonObj decode of event content '${jsonObj["content_json"]}' failed: ${e.toString()}"); + print( + "jsonObj decode of event content '$jsonObj' failed: ${e.toString()}"); content = {}; }