summaryrefslogtreecommitdiffstats
path: root/database
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-04-04 08:29:37 +0300
committerGitHub <noreply@github.com>2022-04-04 08:29:37 +0300
commitfeb2b193dbbf044fc89120b17371699a67190ab7 (patch)
tree8dd6484a149025c9b25175c5b265f0c13073ccb3 /database
parentedea331caf2dc0d407a6c746ac71f57914d25318 (diff)
chore: disable chart exists message (#12594)
Diffstat (limited to 'database')
-rw-r--r--database/rrdset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/rrdset.c b/database/rrdset.c
index af951bd39d..846b40d8ac 100644
--- a/database/rrdset.c
+++ b/database/rrdset.c
@@ -153,7 +153,7 @@ int rrdset_set_name(RRDSET *st, const char *name) {
strncpyz(new_name, sanitized_name, CONFIG_MAX_VALUE);
if(rrdset_index_find_name(host, new_name, 0)) {
- info("RRDSET: chart name '%s' on host '%s' already exists.", new_name, host->hostname);
+ debug(D_RRD_CALLS, "RRDSET: chart name '%s' on host '%s' already exists.", new_name, host->hostname);
if(!strcmp(st->id, full_name) && !st->name) {
unsigned i = 1;