Commit b2af9586 authored by Mun Yong Jang's avatar Mun Yong Jang Committed by Commit Bot

[presubmit] Do not log file content in CheckChangedLUCIConfigs

Bug: 761488
Change-Id: Ic9f7fd50ce33b129436242dd86d183fd3fe83774
Reviewed-on: https://chromium-review.googlesource.com/838080
Commit-Queue: Mun Yong Jang <myjang@google.com>
Reviewed-by: 's avatarNodir Turakulov <nodir@chromium.org>
parent a57000d8
......@@ -1297,7 +1297,6 @@ def CheckChangedLUCIConfigs(input_api, output_api):
if cs['location'].startswith(loc_pref) or
('%s/' % cs['location']) == loc_pref
}
logging.debug('dir_to_config_set: %s', dir_to_config_set)
cs_to_files = collections.defaultdict(list)
for f in input_api.AffectedFiles():
# windows
......@@ -1310,7 +1309,6 @@ def CheckChangedLUCIConfigs(input_api, output_api):
'content': base64.b64encode(
'\n'.join(f.NewContents()).encode('utf-8'))
})
logging.debug('cs_to_files: %s', cs_to_files)
outputs = []
for cs, f in cs_to_files.iteritems():
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment