From 8b9028bbe7a6f2e01ba6bddcf256d02fc11d4858 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Wed, 2 Sep 2020 14:06:46 -0500 Subject: [PATCH] hints: remove warning when clearing hint file When the hint file cannot be accessed, silently ignore hints, like other instances do. --- lib/label/hints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/label/hints.c b/lib/label/hints.c index 8da131428..4177c678f 100644 --- a/lib/label/hints.c +++ b/lib/label/hints.c @@ -274,7 +274,7 @@ static int _clear_hints(struct cmd_context *cmd) time_t t; if (!(fp = fopen(_hints_file, "w"))) { - log_warn("Failed to clear hint file."); + log_debug("clear_hints open errno %d", errno); /* shouldn't happen, but try to unlink in case */ _unlink_hints(); return 0;