summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync_file_system/sync_file_system_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync_file_system/sync_file_system_service.cc')
-rw-r--r--chrome/browser/sync_file_system/sync_file_system_service.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/sync_file_system/sync_file_system_service.cc b/chrome/browser/sync_file_system/sync_file_system_service.cc
index 9634447..69fa39c 100644
--- a/chrome/browser/sync_file_system/sync_file_system_service.cc
+++ b/chrome/browser/sync_file_system/sync_file_system_service.cc
@@ -376,8 +376,9 @@ void SyncFileSystemService::DidProcessRemoteChange(
fileapi::SyncStatusCode status,
const FileSystemURL& url,
fileapi::SyncOperationType type) {
- DVLOG(1) << "DidProcessRemoteChange: "
+ DVLOG(1) << "DidProcessRemoteChange:"
<< " status=" << status
+ << " (" << SyncStatusCodeToString(status) << ")"
<< " url=" << url.DebugString()
<< " operation_type=" << type;
DCHECK(remote_sync_running_);
@@ -413,8 +414,9 @@ void SyncFileSystemService::DidProcessRemoteChange(
void SyncFileSystemService::DidProcessLocalChange(
fileapi::SyncStatusCode status, const FileSystemURL& url) {
- DVLOG(1) << "DidProcessLocalChange: "
+ DVLOG(1) << "DidProcessLocalChange:"
<< " status=" << status
+ << " (" << SyncStatusCodeToString(status) << ")"
<< " url=" << url.DebugString();
DCHECK(local_sync_running_);
local_sync_running_ = false;