From: Andre Noll <maan@tuebingen.mpg.de>
Date: Sat, 11 Nov 2017 20:34:41 +0000 (+0100)
Subject: Remove a noisy log message.
X-Git-Tag: v1.0.0~14
X-Git-Url: https://git.tuebingen.mpg.de/?a=commitdiff_plain;h=56451348a0f1f106f10dccf1ea638fe2af15c597;p=dss.git

Remove a noisy log message.

This message does not add any information and just spams the log
file. Remove it.
---

diff --git a/tv.c b/tv.c
index 8ab5e5a..f954cef 100644
--- a/tv.c
+++ b/tv.c
@@ -54,6 +54,5 @@ int64_t get_current_time(void)
 {
 	time_t now;
 	time(&now);
-	DSS_DEBUG_LOG(("now: %jd\n", (intmax_t)now));
 	return (int64_t)now;
 }