From f32038a78b672acaa3e3f8cb791dfbc11308f118 Mon Sep 17 00:00:00 2001 From: Craig Barratt <19445341+craigbarratt@users.noreply.github.com> Date: Sun, 14 Jun 2020 18:59:36 -0700 Subject: [PATCH] tweak LogLevel on a log message --- backuppc/bpc_attrib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backuppc/bpc_attrib.c b/backuppc/bpc_attrib.c index 78c8b0d..1d34fe4 100644 --- a/backuppc/bpc_attrib.c +++ b/backuppc/bpc_attrib.c @@ -1313,7 +1313,7 @@ int bpc_attrib_dirWrite(bpc_deltaCount_info *deltaInfo, bpc_attrib_dir *dir, cha if ( oldDigest ) { if ( !digestChanged ) { - if ( BPC_LogLevel >= 2 ) bpc_logMsgf("bpc_attrib_dirWrite: old attrib has same digest; no changes to ref counts\n"); + if ( BPC_LogLevel >= 4 ) bpc_logMsgf("bpc_attrib_dirWrite: old attrib has same digest; no changes to ref counts\n"); return 0; } if ( attribPathLen + oldDigest->len * 2 + 2 >= sizeof(attribPath) ) {