@cryptotaxi247 / netdata-1 / commits / f995666a4

set log level of too-old-data message to debug (#16663)

Ilya Mashchenko committed Dec 27, 2023 at 11:42 UTC f995666a4d9c562a1b024f26bbffd9ce3c2371d2
1 file changed +1 -2
database/rrdset.c
+1 -2
@@ -1718,8 +1718,7 @@ void rrdset_timed_done(RRDSET *st, struct timeval now, bool pending_rrdset_next)
1718 // check if we will re-write the entire data set
1719 if(unlikely(dt_usec(&st->last_collected_time, &st->last_updated) > st->db.entries * update_every_ut &&
1720 st->rrd_memory_mode != RRD_MEMORY_MODE_DBENGINE)) {
1721 - netdata_log_info(
1722 - "'%s': too old data (last updated at %"PRId64".%"PRId64", last collected at %"PRId64".%"PRId64"). "
1721 + nd_log_daemon(NDLP_DEBUG, "'%s': too old data (last updated at %" PRId64 ".%" PRId64 ", last collected at %" PRId64 ".%" PRId64 "). "
1722 "Resetting it. Will not store the next entry.",
1723 rrdset_id(st),
1724 (int64_t)st->last_updated.tv_sec,