Title: [92044] trunk/Tools
Revision
92044
Author
[email protected]
Date
2011-07-29 19:17:08 -0700 (Fri, 29 Jul 2011)

Log Message

Actually import the logging module!

* Scripts/webkitpy/common/checkout/scm/git.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (92043 => 92044)


--- trunk/Tools/ChangeLog	2011-07-30 02:14:00 UTC (rev 92043)
+++ trunk/Tools/ChangeLog	2011-07-30 02:17:08 UTC (rev 92044)
@@ -1,5 +1,11 @@
 2011-07-29  Adam Barth  <[email protected]>
 
+        Actually import the logging module!
+
+        * Scripts/webkitpy/common/checkout/scm/git.py:
+
+2011-07-29  Adam Barth  <[email protected]>
+
         More debug logging.  Maybe we're running the git version of this
         function somehow?  (That would explain why it doesn't work!)
 

Modified: trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py (92043 => 92044)


--- trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py	2011-07-30 02:14:00 UTC (rev 92043)
+++ trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py	2011-07-30 02:17:08 UTC (rev 92044)
@@ -27,6 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+import logging
 import os
 import re
 
@@ -40,6 +41,9 @@
 from .svn import SVN, SVNRepository
 
 
+_log = logging.getLogger(__name__)
+
+
 def run_command(*args, **kwargs):
     # FIXME: This should not be a global static.
     # New code should use Executive.run_command directly instead
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to