@@ -636,7 +636,7 @@ dir_check_file(pgFile *file, bool backup_logs)
636
636
pgdata_exclude_files_non_exclusive [i ]) == 0 )
637
637
{
638
638
/* Skip */
639
- elog (VERBOSE , "Excluding file: %s" , file -> name );
639
+ elog (LOG , "Excluding file: %s" , file -> name );
640
640
return CHECK_FALSE ;
641
641
}
642
642
}
@@ -645,7 +645,7 @@ dir_check_file(pgFile *file, bool backup_logs)
645
645
if (strcmp (file -> rel_path , pgdata_exclude_files [i ]) == 0 )
646
646
{
647
647
/* Skip */
648
- elog (VERBOSE , "Excluding file: %s" , file -> name );
648
+ elog (LOG , "Excluding file: %s" , file -> name );
649
649
return CHECK_FALSE ;
650
650
}
651
651
}
@@ -665,7 +665,7 @@ dir_check_file(pgFile *file, bool backup_logs)
665
665
/* exclude by dirname */
666
666
if (strcmp (file -> name , pgdata_exclude_dir [i ]) == 0 )
667
667
{
668
- elog (VERBOSE , "Excluding directory content: %s" , file -> rel_path );
668
+ elog (LOG , "Excluding directory content: %s" , file -> rel_path );
669
669
return CHECK_EXCLUDE_FALSE ;
670
670
}
671
671
}
@@ -675,7 +675,7 @@ dir_check_file(pgFile *file, bool backup_logs)
675
675
if (strcmp (file -> rel_path , PG_LOG_DIR ) == 0 )
676
676
{
677
677
/* Skip */
678
- elog (VERBOSE , "Excluding directory content: %s" , file -> rel_path );
678
+ elog (LOG , "Excluding directory content: %s" , file -> rel_path );
679
679
return CHECK_EXCLUDE_FALSE ;
680
680
}
681
681
}
0 commit comments