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

Unified Diff: Tools/Scripts/webkitpy/common/system/logutils.py

Issue 18418010: Check in the thirdparty libs needed for webkitpy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
Index: Tools/Scripts/webkitpy/common/system/logutils.py
diff --git a/Tools/Scripts/webkitpy/common/system/logutils.py b/Tools/Scripts/webkitpy/common/system/logutils.py
index def3bec4e395baf0835bde8b660367f26f6561d4..e75ff2ccd49ae1722519271b2b709c06c7e28fce 100644
--- a/Tools/Scripts/webkitpy/common/system/logutils.py
+++ b/Tools/Scripts/webkitpy/common/system/logutils.py
@@ -135,11 +135,7 @@ def _default_handlers(stream, logging_level):
# Create the filter.
def should_log(record):
"""Return whether a logging.LogRecord should be logged."""
- # FIXME: Enable the logging of autoinstall messages once
- # autoinstall is adjusted. Currently, autoinstall logs
- # INFO messages when importing already-downloaded packages,
- # which is too verbose.
- if record.name.startswith("webkitpy.thirdparty.autoinstall"):
+ if record.name.startswith("webkitpy.thirdparty"):
return False
return True
« no previous file with comments | « Tools/Scripts/webkitpy/common/system/logtesting.py ('k') | Tools/Scripts/webkitpy/common/system/logutils_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698