From e55846e71628806bbe91e80da6ab150a6ec693a7 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 30 Apr 2018 10:12:34 -0400 Subject: [PATCH] Log start_time when its > Now --- src/zm_event.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/zm_event.cpp b/src/zm_event.cpp index 2008132ef..cd2f42caa 100644 --- a/src/zm_event.cpp +++ b/src/zm_event.cpp @@ -69,7 +69,9 @@ Event::Event( untimedEvent = true; start_time = now; } else if ( start_time.tv_sec > now.tv_sec ) { - Error("StartTime in the future"); + Error("StartTime in the future %d.%d > $d.%d", + start_time.tv_sec, start_time.tv_usec, now.tv_sec, now.tv_usec + ); start_time = now; }