summaryrefslogtreecommitdiffstats
path: root/base/files/file_path_watcher_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/files/file_path_watcher_win.cc')
-rw-r--r--base/files/file_path_watcher_win.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/files/file_path_watcher_win.cc b/base/files/file_path_watcher_win.cc
index 84a5398..b87654e 100644
--- a/base/files/file_path_watcher_win.cc
+++ b/base/files/file_path_watcher_win.cc
@@ -206,8 +206,8 @@ bool FilePathWatcherImpl::SetupWatchHandle(const FilePath& dir,
error_code != ERROR_SHARING_VIOLATION &&
error_code != ERROR_DIRECTORY) {
using ::operator<<; // Pick the right operator<< below.
- DPLOG(ERROR) << "FindFirstChangeNotification failed for "
- << dir.value();
+ PLOG(ERROR) << "FindFirstChangeNotification failed for "
+ << dir.value();
return false;
}
@@ -241,7 +241,7 @@ bool FilePathWatcherImpl::UpdateWatch() {
child_dirs.push_back(watched_path.BaseName());
FilePath parent(watched_path.DirName());
if (parent == watched_path) {
- DLOG(ERROR) << "Reached the root directory";
+ LOG(ERROR) << "Reached the root directory";
return false;
}
watched_path = parent;