Title: [119586] trunk/Source/WebCore
Revision
119586
Author
[email protected]
Date
2012-06-06 04:41:19 -0700 (Wed, 06 Jun 2012)

Log Message

Fix a few spelling mistakes in IconDatabase logging

Makes debugging harder if the logging is confusing.

Reviewed by Jocelyn Turcotte.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119585 => 119586)


--- trunk/Source/WebCore/ChangeLog	2012-06-06 11:37:02 UTC (rev 119585)
+++ trunk/Source/WebCore/ChangeLog	2012-06-06 11:41:19 UTC (rev 119586)
@@ -1,3 +1,15 @@
+2012-06-06  Tor Arne Vestbø  <[email protected]>
+
+        Fix a few spelling mistakes in IconDatabase logging
+
+        Makes debugging harder if the logging is confusing.
+
+        Reviewed by Jocelyn Turcotte.
+
+        * loader/icon/IconDatabase.cpp:
+        (WebCore::IconDatabase::notifyPendingLoadDecisions):
+        (WebCore::IconDatabase::readFromDatabase):
+
 2012-05-25  Vsevolod Vlasov  <[email protected]>
 
         Web Inspector: [Compiler] Remove compile-front-end.sh and fix InjectedScriptSource errors.

Modified: trunk/Source/WebCore/loader/icon/IconDatabase.cpp (119585 => 119586)


--- trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2012-06-06 11:37:02 UTC (rev 119585)
+++ trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2012-06-06 11:41:19 UTC (rev 119586)
@@ -810,7 +810,7 @@
     
     // This method should only be called upon completion of the initial url import from the database
     ASSERT(m_iconURLImportComplete);
-    LOG(IconDatabase, "Notifying all DocumentLoaders that were waiting on a load decision for thier icons");
+    LOG(IconDatabase, "Notifying all DocumentLoaders that were waiting on a load decision for their icons");
     
     HashSet<RefPtr<DocumentLoader> >::iterator i = m_loadersPendingDecision.begin();
     HashSet<RefPtr<DocumentLoader> >::iterator end = m_loadersPendingDecision.end();
@@ -1591,7 +1591,7 @@
                     HashSet<String>::const_iterator end = outerHash->end();
                     for (; iter != end; ++iter) {
                         if (innerHash->contains(*iter)) {
-                            LOG(IconDatabase, "%s is interesting in the icon we just read.  Adding it to the list and removing it from the interested set", urlForLogging(*iter).ascii().data());
+                            LOG(IconDatabase, "%s is interested in the icon we just read. Adding it to the notification list and removing it from the interested set", urlForLogging(*iter).ascii().data());
                             urlsToNotify.add(*iter);
                         }
                         
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to