Title: [247408] trunk/Tools
Revision
247408
Author
aakash_j...@apple.com
Date
2019-07-12 17:09:11 -0700 (Fri, 12 Jul 2019)

Log Message

[ews-app] Enable logging for clicking SubmitToEWS button
https://bugs.webkit.org/show_bug.cgi?id=199757

Unreviewed minor infrastructure fix.


* BuildSlaveSupport/ews-app/ews/views/submittoews.py:
(SubmitToEWS.post): Change logging level from debug to info.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/views/submittoews.py (247407 => 247408)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/views/submittoews.py	2019-07-13 00:05:18 UTC (rev 247407)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/views/submittoews.py	2019-07-13 00:09:11 UTC (rev 247408)
@@ -48,7 +48,7 @@
         except:
             return HttpResponse("Invalid patch id {}".format(request.POST.get('patch_id')))
 
-        _log.debug('SubmitToEWS::patch: {}'.format(patch_id))
+        _log.info('SubmitToEWS::patch: {}'.format(patch_id))
         if Patch.is_patch_sent_to_buildbot(patch_id):
             _log.info('SubmitToEWS::patch {} already submitted'.format(patch_id))
             if request.POST.get('next_action') == 'return_to_bubbles':

Modified: trunk/Tools/ChangeLog (247407 => 247408)


--- trunk/Tools/ChangeLog	2019-07-13 00:05:18 UTC (rev 247407)
+++ trunk/Tools/ChangeLog	2019-07-13 00:09:11 UTC (rev 247408)
@@ -1,3 +1,13 @@
+2019-07-12  Aakash Jain  <aakash_j...@apple.com>
+
+        [ews-app] Enable logging for clicking SubmitToEWS button
+        https://bugs.webkit.org/show_bug.cgi?id=199757
+
+        Unreviewed minor infrastructure fix.
+
+        * BuildSlaveSupport/ews-app/ews/views/submittoews.py:
+        (SubmitToEWS.post): Change logging level from debug to info.
+
 2019-07-12  Alex Christensen  <achristen...@webkit.org>
 
         Enable client certificate authentication unit test
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to