@@ -636,7 +636,7 @@ dir_check_file(pgFile *file, bool backup_logs)
636636pgdata_exclude_files_non_exclusive [i ])== 0 )
637637{
638638/* Skip */
639- elog (VERBOSE ,"Excluding file: %s" ,file -> name );
639+ elog (LOG ,"Excluding file: %s" ,file -> name );
640640return CHECK_FALSE ;
641641}
642642}
@@ -645,7 +645,7 @@ dir_check_file(pgFile *file, bool backup_logs)
645645if (strcmp (file -> rel_path ,pgdata_exclude_files [i ])== 0 )
646646{
647647/* Skip */
648- elog (VERBOSE ,"Excluding file: %s" ,file -> name );
648+ elog (LOG ,"Excluding file: %s" ,file -> name );
649649return CHECK_FALSE ;
650650}
651651}
@@ -665,7 +665,7 @@ dir_check_file(pgFile *file, bool backup_logs)
665665/* exclude by dirname */
666666if (strcmp (file -> name ,pgdata_exclude_dir [i ])== 0 )
667667{
668- elog (VERBOSE ,"Excluding directory content: %s" ,file -> rel_path );
668+ elog (LOG ,"Excluding directory content: %s" ,file -> rel_path );
669669return CHECK_EXCLUDE_FALSE ;
670670}
671671}
@@ -675,7 +675,7 @@ dir_check_file(pgFile *file, bool backup_logs)
675675if (strcmp (file -> rel_path ,PG_LOG_DIR )== 0 )
676676{
677677/* Skip */
678- elog (VERBOSE ,"Excluding directory content: %s" ,file -> rel_path );
678+ elog (LOG ,"Excluding directory content: %s" ,file -> rel_path );
679679return CHECK_EXCLUDE_FALSE ;
680680}
681681}