]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
epg: log the grabber id in _epg_object_deserialize()
authorJaroslav Kysela <perex@perex.cz>
Mon, 2 Oct 2017 18:20:18 +0000 (20:20 +0200)
committerJaroslav Kysela <perex@perex.cz>
Sat, 7 Oct 2017 20:48:22 +0000 (22:48 +0200)
src/epg.c

index 77283ac9697bb43def44fdf5f0cd320fc22546d2..ab5a7dc47338a57d2968cddbe16ae27d9c7139f0 100644 (file)
--- a/src/epg.c
+++ b/src/epg.c
@@ -312,8 +312,8 @@ static epg_object_t *_epg_object_deserialize ( htsmsg_t *m, epg_object_t *eo )
     _epg_object_set_updated(eo);
     eo->updated = s64;
   }
-  tvhtrace(LS_EPG, "eo [%p, %u, %d, %s] deserialize",
-           eo, eo->id, eo->type, eo->uri);
+  tvhtrace(LS_EPG, "eo [%p, %u, %d, %s, %s, %s] deserialize",
+           eo, eo->id, eo->type, eo->uri, s, eo->grabber ? eo->grabber->id : NULL);
   return eo;
 }