df5243869d
Resolves: #1133549
47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
From 9bfb39ab7a7a1aa71726bcae242d483b003869dc Mon Sep 17 00:00:00 2001
|
|
From: Jakub Filak <jfilak@redhat.com>
|
|
Date: Tue, 26 Aug 2014 22:13:02 +0200
|
|
Subject: [PATCH 23/33] lib: don't spit unnecessary debug messages
|
|
|
|
Related to rhbz#1133674
|
|
|
|
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
|
---
|
|
src/lib/dump_dir.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/lib/dump_dir.c b/src/lib/dump_dir.c
|
|
index 28439af..045a45b 100644
|
|
--- a/src/lib/dump_dir.c
|
|
+++ b/src/lib/dump_dir.c
|
|
@@ -251,7 +251,7 @@ static const char *dd_check(struct dump_dir *dd)
|
|
dd->dd_time = parse_time_file(filename_buf);
|
|
if (dd->dd_time < 0)
|
|
{
|
|
- log_warning("Missing file: "FILENAME_TIME);
|
|
+ log_debug("Missing file: "FILENAME_TIME);
|
|
return FILENAME_TIME;
|
|
}
|
|
|
|
@@ -259,7 +259,7 @@ static const char *dd_check(struct dump_dir *dd)
|
|
dd->dd_type = load_text_file(filename_buf, DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE);
|
|
if (!dd->dd_type || (strlen(dd->dd_type) == 0))
|
|
{
|
|
- log_warning("Missing or empty file: "FILENAME_TYPE);
|
|
+ log_debug("Missing or empty file: "FILENAME_TYPE);
|
|
return FILENAME_TYPE;
|
|
}
|
|
|
|
@@ -305,7 +305,7 @@ static int dd_lock(struct dump_dir *dd, unsigned sleep_usec, int flags)
|
|
if (missing_file)
|
|
{
|
|
xunlink(lock_buf);
|
|
- log_warning("Unlocked '%s' (no or corrupted '%s' file)", lock_buf, missing_file);
|
|
+ log_notice("Unlocked '%s' (no or corrupted '%s' file)", lock_buf, missing_file);
|
|
if (--count == 0 || flags & DD_DONT_WAIT_FOR_LOCK)
|
|
{
|
|
errno = EISDIR; /* "this is an ordinary dir, not dump dir" */
|
|
--
|
|
2.1.0
|
|
|