summaryrefslogtreecommitdiffstats
path: root/database
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2023-12-27 11:42:15 +0200
committerGitHub <noreply@github.com>2023-12-27 11:42:15 +0200
commitf995666a4d9c562a1b024f26bbffd9ce3c2371d2 (patch)
tree94445f8ffac9f17932faeba03de1b212e2f40246 /database
parent0cc327f9fc6f9425c22b56497f4739e47a9d714a (diff)
set log level of too-old-data message to debug (#16663)
Diffstat (limited to 'database')
-rw-r--r--database/rrdset.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/database/rrdset.c b/database/rrdset.c
index f4bb48aa75..4751db4612 100644
--- a/database/rrdset.c
+++ b/database/rrdset.c
@@ -1718,8 +1718,7 @@ void rrdset_timed_done(RRDSET *st, struct timeval now, bool pending_rrdset_next)
// check if we will re-write the entire data set
if(unlikely(dt_usec(&st->last_collected_time, &st->last_updated) > st->db.entries * update_every_ut &&
st->rrd_memory_mode != RRD_MEMORY_MODE_DBENGINE)) {
- netdata_log_info(
- "'%s': too old data (last updated at %"PRId64".%"PRId64", last collected at %"PRId64".%"PRId64"). "
+ nd_log_daemon(NDLP_DEBUG, "'%s': too old data (last updated at %" PRId64 ".%" PRId64 ", last collected at %" PRId64 ".%" PRId64 "). "
"Resetting it. Will not store the next entry.",
rrdset_id(st),
(int64_t)st->last_updated.tv_sec,