| Index: Source/WebCore/html/FTPDirectoryDocument.cpp
|
| diff --git a/Source/WebCore/html/FTPDirectoryDocument.cpp b/Source/WebCore/html/FTPDirectoryDocument.cpp
|
| index 878ffb93bd1c127871b2c8ae0ba3d2bc1948402f..9ccd5f06d93c590dd6f555d5f05dd7e934b0f525 100644
|
| --- a/Source/WebCore/html/FTPDirectoryDocument.cpp
|
| +++ b/Source/WebCore/html/FTPDirectoryDocument.cpp
|
| @@ -272,7 +272,7 @@ void FTPDirectoryDocumentParser::parseAndAppendOneLine(const String& inputLine)
|
| return;
|
| }
|
|
|
| - LOG(FTP, "Appending entry - %s, %s", filename.ascii().data(), result.fileSize.ascii().data());
|
| + LOG_INFO(FTP, "Appending entry - %s, %s", filename.ascii().data(), result.fileSize.ascii().data());
|
|
|
| appendEntry(filename, processFilesizeString(result.fileSize, result.type == FTPDirectoryEntry), processFileDateString(result.modifiedTime), result.type == FTPDirectoryEntry);
|
| }
|
| @@ -283,7 +283,7 @@ static inline PassRefPtr<SharedBuffer> createTemplateDocumentData(Settings* sett
|
| if (settings)
|
| buffer = SharedBuffer::createWithContentsOfFile(settings->ftpDirectoryTemplatePath());
|
| if (buffer)
|
| - LOG(FTP, "Loaded FTPDirectoryTemplate of length %i\n", buffer->size());
|
| + LOG_INFO(FTP, "Loaded FTPDirectoryTemplate of length %i\n", buffer->size());
|
| return buffer.release();
|
| }
|
|
|
| @@ -331,7 +331,7 @@ bool FTPDirectoryDocumentParser::loadDocumentTemplate()
|
|
|
| void FTPDirectoryDocumentParser::createBasicDocument()
|
| {
|
| - LOG(FTP, "Creating a basic FTP document structure as no template was loaded");
|
| + LOG_INFO(FTP, "Creating a basic FTP document structure as no template was loaded");
|
|
|
| // FIXME: Make this "basic document" more acceptable
|
|
|
| @@ -397,7 +397,7 @@ void FTPDirectoryDocumentParser::append(PassRefPtr<StringImpl> inputSource)
|
| while (cursor < m_dest) {
|
| if (*cursor == '\n') {
|
| m_carryOver.append(String(start, cursor - start));
|
| - LOG(FTP, "%s", m_carryOver.ascii().data());
|
| + LOG_INFO(FTP, "%s", m_carryOver.ascii().data());
|
| parseAndAppendOneLine(m_carryOver);
|
| m_carryOver = String();
|
|
|
|
|