| Index: Source/WebCore/fileapi/FileReader.cpp
|
| diff --git a/Source/WebCore/fileapi/FileReader.cpp b/Source/WebCore/fileapi/FileReader.cpp
|
| index bf8c33d96d386a91599e360d1a0a07cb5066717f..b8ece1fce0eebad4ee11ce3862cc4dd2c37d3944 100644
|
| --- a/Source/WebCore/fileapi/FileReader.cpp
|
| +++ b/Source/WebCore/fileapi/FileReader.cpp
|
| @@ -90,7 +90,7 @@ void FileReader::readAsArrayBuffer(Blob* blob, ExceptionCode& ec)
|
| if (!blob)
|
| return;
|
|
|
| - LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
| + LOG_INFO(FileAPI, "FileReader: reading as array buffer: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
|
|
| readInternal(blob, FileReaderLoader::ReadAsArrayBuffer, ec);
|
| }
|
| @@ -100,7 +100,7 @@ void FileReader::readAsBinaryString(Blob* blob, ExceptionCode& ec)
|
| if (!blob)
|
| return;
|
|
|
| - LOG(FileAPI, "FileReader: reading as binary: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
| + LOG_INFO(FileAPI, "FileReader: reading as binary: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
|
|
| readInternal(blob, FileReaderLoader::ReadAsBinaryString, ec);
|
| }
|
| @@ -110,7 +110,7 @@ void FileReader::readAsText(Blob* blob, const String& encoding, ExceptionCode& e
|
| if (!blob)
|
| return;
|
|
|
| - LOG(FileAPI, "FileReader: reading as text: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
| + LOG_INFO(FileAPI, "FileReader: reading as text: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
|
|
| m_encoding = encoding;
|
| readInternal(blob, FileReaderLoader::ReadAsText, ec);
|
| @@ -126,7 +126,7 @@ void FileReader::readAsDataURL(Blob* blob, ExceptionCode& ec)
|
| if (!blob)
|
| return;
|
|
|
| - LOG(FileAPI, "FileReader: reading as data URL: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
| + LOG_INFO(FileAPI, "FileReader: reading as data URL: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
|
|
|
| readInternal(blob, FileReaderLoader::ReadAsDataURL, ec);
|
| }
|
| @@ -159,7 +159,7 @@ static void delayedAbort(ScriptExecutionContext*, FileReader* reader)
|
|
|
| void FileReader::abort()
|
| {
|
| - LOG(FileAPI, "FileReader: aborting\n");
|
| + LOG_INFO(FileAPI, "FileReader: aborting\n");
|
|
|
| if (m_aborting || m_state != LOADING)
|
| return;
|
|
|