lib/qdumpfs.rb in qdumpfs-1.0.0 vs lib/qdumpfs.rb in qdumpfs-1.0.1
- old
+ new
@@ -178,11 +178,11 @@
begin
# ファイルのアップデート
update_file(s, l, t)
dirs[t] = File.stat(s) if File.ftype(s) == "directory"
rescue => e
- wprintf("%s: %s", src, e.message)
+ log("#{src}: #{e.message}")
next
end
end
return if @opt.dry_run
restore_dir_attributes(dirs)
@@ -213,10 +213,10 @@
raise "#{type}: shouldn't be reached here"
end
chown_if_root(type, s, t)
dirs[t] = File.stat(s) if File.ftype(s) == "directory"
rescue => e
- wprintf("%s: %s", s, e.message)
+ log("#{src}: #{e.message}")
next
end
end
restore_dir_attributes(dirs) unless @opt.dry_run
end