| Index: third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| index 1c5ad1aee59781cc8cb63e2f6f53028701f112db..aa0a47fe795fef494080b81b6aca70afbd108a21 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
|
| @@ -150,7 +150,7 @@ static void checkExistingName(const char* alias, const char* atomicName)
|
| && strcmp(oldAtomicName, "ISO-8859-8-I") == 0
|
| && strcasecmp(atomicName, "iso-8859-8") == 0)
|
| return;
|
| - WTF_LOG_ERROR("alias %s maps to %s already, but someone is trying to make it map to %s", alias, oldAtomicName, atomicName);
|
| + LOG(ERROR) << "alias " << alias << " maps to " << oldAtomicName << " already, but someone is trying to make it map to " << atomicName;
|
| }
|
|
|
| #endif
|
|
|