Index: chrome/common/json_pref_store.cc |
diff --git a/chrome/common/json_pref_store.cc b/chrome/common/json_pref_store.cc |
index f5ff7282e5da3b8431aea12115cfcb60b1b62cab..63e11d99707e07f329808935048e880da3cdd16b 100644 |
--- a/chrome/common/json_pref_store.cc |
+++ b/chrome/common/json_pref_store.cc |
@@ -84,13 +84,6 @@ PersistentPrefStore::PrefReadError JsonPrefStore::ReadPrefs() { |
std::string error_msg; |
scoped_ptr<Value> value(serializer.Deserialize(&error_code, &error_msg)); |
if (!value.get()) { |
-#if defined(GOOGLE_CHROME_BUILD) |
- // This log could be used for more detailed client-side error diagnosis, |
- // but since this triggers often with unit tests, we need to disable it |
- // in non-official builds. |
- PLOG(ERROR) << "Error reading Preferences: " << error_msg << " " << |
- path_.value(); |
-#endif |
PrefReadError error; |
switch (error_code) { |
case JSONFileValueSerializer::JSON_ACCESS_DENIED: |