| Index: chrome/browser/sync_file_system/drive_file_sync_util.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_file_sync_util.cc b/chrome/browser/sync_file_system/drive_file_sync_util.cc
|
| index 743ea82e63881849f907d65b4115e677ba29acf5..02260b42746d3d30120daca52065cf2a3e805c65 100644
|
| --- a/chrome/browser/sync_file_system/drive_file_sync_util.cc
|
| +++ b/chrome/browser/sync_file_system/drive_file_sync_util.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| +#include "chrome/browser/sync_file_system/logger.h"
|
|
|
| namespace sync_file_system {
|
|
|
| @@ -76,7 +77,7 @@ SyncStatusCode GDataErrorCodeToSyncStatusCode(
|
| if (error == -1)
|
| return SYNC_STATUS_NETWORK_ERROR;
|
|
|
| - LOG(WARNING) << "Got unexpected error: " << error;
|
| + SYNCFS_LOG(WARNING, "Got unexpected error: %d", static_cast<int>(error));
|
| return SYNC_STATUS_FAILED;
|
| }
|
|
|
|
|