| Index: sync/engine/nigori_util.cc
|
| diff --git a/sync/engine/nigori_util.cc b/sync/engine/nigori_util.cc
|
| index 1b6d42a803288ef5c64cd6c2781b55ab8011f827..78bb33c697bec67a22c7ecb0b0bdd36b468b089c 100644
|
| --- a/sync/engine/nigori_util.cc
|
| +++ b/sync/engine/nigori_util.cc
|
| @@ -179,7 +179,9 @@ bool UpdateEntryWithEncryption(
|
| if (VLOG_IS_ON(2)) {
|
| scoped_ptr<DictionaryValue> value(entry->ToValue());
|
| std::string info;
|
| - base::JSONWriter::Write(value.get(), true, &info);
|
| + base::JSONWriter::WriteWithOptions(value.get(),
|
| + base::JSONWriter::OPTIONS_PRETTY_PRINT,
|
| + &info);
|
| DVLOG(2) << "Encrypting specifics of type "
|
| << syncable::ModelTypeToString(type)
|
| << " with content: "
|
|
|