From 171acde37ae95b9a5a130f06efdb5037ad85ee7e Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 16 Aug 2018 23:39:09 -0400 Subject: [PATCH] Mark GC messages as INFO rather than ERROR --- bin/khatus_bar | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/khatus_bar b/bin/khatus_bar index 6af6e35..e6fd1ff 100755 --- a/bin/khatus_bar +++ b/bin/khatus_bar @@ -100,7 +100,7 @@ function cache_gc( src_and_key, unused_for) { for (src_and_key in _cache) { unused_for = cache_get_time() - _cache_atime[src_and_key] if (unused_for > 3600) { - print_msg_error(\ + print_msg_info(\ "cache_gc", "Deleting unused src_and_key: " src_and_key \ ) delete _cache[src_and_key] @@ -323,6 +323,10 @@ function print_msg_ok(key, val) { print_msg("OK", key, val, "/dev/stdout") } +function print_msg_info(location, msg) { + print_msg("INFO", location, msg, "/dev/stderr") +} + function print_msg_error(location, msg) { print_msg("ERROR", location, msg, "/dev/stderr") } -- 2.20.1