Title: [163993] trunk/Source/WebCore
Revision
163993
Author
[email protected]
Date
2014-02-12 15:09:28 -0800 (Wed, 12 Feb 2014)

Log Message

Add a missing ": " between the URL and exception in STDOUT logs.

https://bugs.webkit.org/show_bug.cgi?id=128689

Reviewed by Joseph Pecoraro.

* page/PageConsole.cpp:
(WebCore::PageConsole::addMessage): Print ": " after calling
printSourceURLAndPosition now that it does not print it for us.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163992 => 163993)


--- trunk/Source/WebCore/ChangeLog	2014-02-12 22:56:27 UTC (rev 163992)
+++ trunk/Source/WebCore/ChangeLog	2014-02-12 23:09:28 UTC (rev 163993)
@@ -1,3 +1,15 @@
+2014-02-12  Timothy Hatcher  <[email protected]>
+
+        Add a missing ": " between the URL and exception in STDOUT logs.
+
+        https://bugs.webkit.org/show_bug.cgi?id=128689
+
+        Reviewed by Joseph Pecoraro.
+
+        * page/PageConsole.cpp:
+        (WebCore::PageConsole::addMessage): Print ": " after calling
+        printSourceURLAndPosition now that it does not print it for us.
+
 2014-02-12  Enrica Casucci  <[email protected]>
 
         WK2: coordinate mapping for frames does not work when the page is scrolled.

Modified: trunk/Source/WebCore/page/PageConsole.cpp (163992 => 163993)


--- trunk/Source/WebCore/page/PageConsole.cpp	2014-02-12 22:56:27 UTC (rev 163992)
+++ trunk/Source/WebCore/page/PageConsole.cpp	2014-02-12 23:09:28 UTC (rev 163993)
@@ -194,6 +194,9 @@
         return;
 
     printSourceURLAndPosition(url, lineNumber, columnNumber);
+
+    printf(": ");
+
     printMessageSourceAndLevelPrefix(source, level);
 
     printf(" %s\n", message.utf8().data());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to