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

Unified Diff: PRESUBMIT.py

Issue 86523005: Replace all usage of LOG(INFO) in Chromoting host with HOST_LOG to bypass the presubmit check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | remoting/base/logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 1c1e491ea52516698355a9ff15273e3e91b7c728..9ad9cd189ee1497b596361ffc109a29ef4176fed 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -832,7 +832,8 @@ def _CheckSpamLogging(input_api, output_api):
black_list = (_EXCLUDED_PATHS +
_TEST_CODE_EXCLUDED_PATHS +
input_api.DEFAULT_BLACK_LIST +
- (r"^base[\\\/]logging\.h$",))
+ (r"^base[\\\/]logging\.h$",
+ r"^remoting[\\\/]base[\\\/]logging\.h$",))
source_file_filter = lambda x: input_api.FilterSourceFile(
x, white_list=(file_inclusion_pattern,), black_list=black_list)
« no previous file with comments | « no previous file | remoting/base/logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698