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

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') | remoting/base/logging.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 1c1e491ea52516698355a9ff15273e3e91b7c728..8cb5a713fea4d4f1a896044287bf20810844a5fc 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"^base[\\\/]remoting[\\\/]logging\.h$",))
Sergey Ulanov 2013/11/26 02:58:59 remoting/base/logging.h
weitao 2013/11/26 18:06:08 Done.
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') | remoting/base/logging.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698