@@ -686,16 +686,13 @@ restore_files(void *arg)
686686(arguments -> backup -> backup_mode == BACKUP_MODE_DIFF_PAGE
687687|| arguments -> backup -> backup_mode == BACKUP_MODE_DIFF_PTRACK ))
688688{
689- elog (VERBOSE ,"The file didn`t change. Skip restore:%s " ,file -> path );
689+ elog (VERBOSE ,"The file didn`t change. Skip restore:\"%s\" " ,file -> path );
690690continue ;
691691}
692692
693693/* Directories were created before */
694694if (S_ISDIR (file -> mode ))
695- {
696- elog (VERBOSE ,"Directory, skip" );
697695continue ;
698- }
699696
700697/* Do not restore tablespace_map file */
701698if (path_is_prefix_of_path (PG_TABLESPACE_MAP_FILE ,file -> rel_path ))
@@ -706,18 +703,12 @@ restore_files(void *arg)
706703
707704/* Do no restore external directory file if a user doesn't want */
708705if (skip_external_dirs && file -> external_dir_num > 0 )
709- {
710- elog (VERBOSE ,"Skip external directory file" );
711706continue ;
712- }
713707
714708/* Skip unnecessary file */
715709if (parray_bsearch (arguments -> dest_files ,file ,
716710pgFileCompareRelPathWithExternal )== NULL )
717- {
718- elog (VERBOSE ,"Skip removed file" );
719711continue ;
720- }
721712
722713/*
723714 * restore the file.