Title: [241488] trunk/Tools
Revision
241488
Author
[email protected]
Date
2019-02-13 16:31:23 -0800 (Wed, 13 Feb 2019)

Log Message

[ews-app] Change log level for a log statement

Unreviewed minor fix.

* BuildSlaveSupport/ews-app/ews/models/patch.py:
(Patch.save_patch):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews/models/patch.py (241487 => 241488)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews/models/patch.py	2019-02-14 00:28:55 UTC (rev 241487)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews/models/patch.py	2019-02-14 00:31:23 UTC (rev 241488)
@@ -48,7 +48,7 @@
             return ERR_INVALID_PATCH_ID
 
         if Patch.is_existing_patch_id(patch_id):
-            _log.info("Patch id {} already exists in database. Skipped saving.".format(patch_id))
+            _log.debug("Patch id {} already exists in database. Skipped saving.".format(patch_id))
             return ERR_EXISTING_PATCH
         Patch(patch_id, bug_id, obsolete, sent_to_buildbot).save()
         _log.info('Saved patch in database, id: {}'.format(patch_id))

Modified: trunk/Tools/ChangeLog (241487 => 241488)


--- trunk/Tools/ChangeLog	2019-02-14 00:28:55 UTC (rev 241487)
+++ trunk/Tools/ChangeLog	2019-02-14 00:31:23 UTC (rev 241488)
@@ -1,3 +1,12 @@
+2019-02-13  Aakash Jain  <[email protected]>
+
+        [ews-app] Change log level for a log statement
+
+        Unreviewed minor fix.
+
+        * BuildSlaveSupport/ews-app/ews/models/patch.py:
+        (Patch.save_patch):
+
 2019-02-13  Jer Noble  <[email protected]>
 
         [Cocoa] Media elements will restart network buffering just before suspending
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to