From d88bcee079c94e9e63f03c84b66df94be947beec Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Fri, 19 Jun 2009 17:16:57 +0200 Subject: reduced verbosity of integrity checker --- src/libstrongswan/integrity_checker.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/libstrongswan/integrity_checker.c b/src/libstrongswan/integrity_checker.c index 3979092a4..813ae9e43 100644 --- a/src/libstrongswan/integrity_checker.c +++ b/src/libstrongswan/integrity_checker.c @@ -182,7 +182,6 @@ static bool check_file(private_integrity_checker_t *this, cs = find_checksum(this, name); if (!cs) { - DBG1("file checksum of %s is %08x", name, build_file(this, file)); return FALSE; } sum = build_file(this, file); @@ -192,7 +191,7 @@ static bool check_file(private_integrity_checker_t *this, name, file, sum, cs->file); return FALSE; } - DBG1("file checksum %s of '%s' tested successfully", name, file); + DBG2("file checksum %s tested successfully", name); return TRUE; } @@ -208,7 +207,6 @@ static bool check_segment(private_integrity_checker_t *this, cs = find_checksum(this, name); if (!cs) { - DBG1("segment checksum of %s is %08x", name, build_segment(this, sym)); return FALSE; } sum = build_segment(this, sym); @@ -218,7 +216,7 @@ static bool check_segment(private_integrity_checker_t *this, name, sum, cs->segment); return FALSE; } - DBG1("segment checksum %s tested successfully", name); + DBG2("segment checksum %s tested successfully", name); return TRUE; } -- cgit v1.2.3