Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Unified Diff: Source/WebCore/html/FTPDirectoryDocument.cpp

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/history/PageCache.cpp ('k') | Source/WebCore/html/HTMLMediaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/WebCore/history/PageCache.cpp ('k') | Source/WebCore/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698