summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2021-12-20 16:25:32 +0100
committerGitHub <noreply@github.com>2021-12-20 16:25:32 +0100
commit55818f5ca4484a8b061b9e1029ff1d1c300edc9d (patch)
tree4aa07884e6e093c3bf68817014d5cf73f9d5a377
parent8d2ffbf6d8b82589d2530ba6efec52a95d518bbf (diff)
less log spam
- I get one line per minute [2021-12-20 15:16:12.077] INFO : logd logdemon no old logfiles matching /opt/vespa/logs/vespa/vespa.log-*-*-*.*-*-*
-rw-r--r--logd/src/logd/watcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/logd/src/logd/watcher.cpp b/logd/src/logd/watcher.cpp
index 23d1580dbf4..c3752fcc3e8 100644
--- a/logd/src/logd/watcher.cpp
+++ b/logd/src/logd/watcher.cpp
@@ -366,7 +366,7 @@ Watcher::removeOldLogs(const char *prefix)
}
}
} else if (globresult == GLOB_NOMATCH) {
- LOG(info, "no old logfiles matching %s", pattern);
+ LOG(debug, "no old logfiles matching %s", pattern);
} else {
LOG(warning, "glob %s failed: %d", pattern, globresult);
}