[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

weinig at apple.com weinig at apple.com
Wed Dec 22 18:29:38 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6db0fa3a5928e8b19a81f4e3547e65830a8edac9
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 13 00:00:12 2010 +0000

    Disable WebKit2 logging by default.
    
    Reviewed by Anders Carlsson.
    
    * Platform/Logging.cpp:
    (initializeLogChannelsIfNecessary):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73878 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 14f5f0d..e463b1d 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-12  Sam Weinig  <sam at webkit.org>
+
+        Reviewed by Anders Carlsson.
+
+        Disable WebKit2 logging by default.
+
+        * Platform/Logging.cpp:
+        (initializeLogChannelsIfNecessary):
+
 2010-12-11  Brian Weinstein  <bweinstein at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit2/Platform/Logging.cpp b/WebKit2/Platform/Logging.cpp
index 34cee18..6daa159 100644
--- a/WebKit2/Platform/Logging.cpp
+++ b/WebKit2/Platform/Logging.cpp
@@ -27,9 +27,9 @@
 
 #if !LOG_DISABLED
 
-WTFLogChannel LogSessionState = { 0x00000001, "WebKit2LogLevel", WTFLogChannelOn };
-WTFLogChannel LogContextMenu  = { 0x00000002, "WebKit2LogLevel", WTFLogChannelOn };
-WTFLogChannel LogTextInput    = { 0x00000003, "WebKit2LogLevel", WTFLogChannelOn };
+WTFLogChannel LogSessionState = { 0x00000001, "WebKit2LogLevel", WTFLogChannelOff };
+WTFLogChannel LogContextMenu  = { 0x00000002, "WebKit2LogLevel", WTFLogChannelOff };
+WTFLogChannel LogTextInput    = { 0x00000003, "WebKit2LogLevel", WTFLogChannelOff };
 
 static inline void initializeLogChannel(WTFLogChannel* channel)
 {
@@ -45,6 +45,7 @@ void initializeLogChannelsIfNecessary()
 
     initializeLogChannel(&LogContextMenu);
     initializeLogChannel(&LogSessionState);
+    initializeLogChannel(&LogTextInput);
 }
 
 #endif // LOG_DISABLED

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list