Title: [258407] trunk/Tools
- Revision
- 258407
- Author
- [email protected]
- Date
- 2020-03-13 10:40:11 -0700 (Fri, 13 Mar 2020)
Log Message
[ews-app] reduce logging
https://bugs.webkit.org/show_bug.cgi?id=209062
Reviewed by Jonathan Bedard.
* BuildSlaveSupport/ews-app/ews/common/bugzilla.py:
(BugzillaBeautifulSoup.authenticate):
(BugzillaBeautifulSoup._load_query):
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/common/bugzilla.py (258406 => 258407)
--- trunk/Tools/BuildSlaveSupport/ews-app/ews/common/bugzilla.py 2020-03-13 17:16:35 UTC (rev 258406)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/common/bugzilla.py 2020-03-13 17:40:11 UTC (rev 258407)
@@ -158,7 +158,7 @@
attempts = 0
while not authenticated:
attempts += 1
- _log.info('Logging in as {}...'.format(username))
+ _log.debug('Logging in as {}...'.format(username))
self.browser.open(config.BUG_SERVER_URL + 'index.cgi?GoAheadAndLogIn=1')
self.browser.select_form(name="login")
self.browser['Bugzilla_login'] = username
@@ -196,7 +196,7 @@
def _load_query(self, query):
self.authenticate()
full_url = '{}{}'.format(config.BUG_SERVER_URL, query)
- _log.info('Getting list of patches needing review, URL: {}'.format(full_url))
+ _log.debug('Getting list of patches needing review, URL: {}'.format(full_url))
return self.browser.open(full_url)
def _parse_attachment_ids_request_query(self, page, since=None):
Modified: trunk/Tools/ChangeLog (258406 => 258407)
--- trunk/Tools/ChangeLog 2020-03-13 17:16:35 UTC (rev 258406)
+++ trunk/Tools/ChangeLog 2020-03-13 17:40:11 UTC (rev 258407)
@@ -1,3 +1,14 @@
+2020-03-13 Aakash Jain <[email protected]>
+
+ [ews-app] reduce logging
+ https://bugs.webkit.org/show_bug.cgi?id=209062
+
+ Reviewed by Jonathan Bedard.
+
+ * BuildSlaveSupport/ews-app/ews/common/bugzilla.py:
+ (BugzillaBeautifulSoup.authenticate):
+ (BugzillaBeautifulSoup._load_query):
+
2020-03-13 Ryosuke Niwa <[email protected]>
Crash in TextIterator::node via TextManipulationController::replace
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes