Bug 1392391 - [mozlog] Forward extra data from 'suite_end' action, r=jgraham

The suite_end action ostensibly supports an extra key, however that extra data never
gets forwarded to the _log_data function.

MozReview-Commit-ID: AfUBmQpx3Zz

--HG--
extra : rebase_source : 5f10746a8384f89ce9fffc28db49b764f6e279ff
This commit is contained in:
Andrew Halberstadt 2018-01-25 10:44:04 -05:00
parent 41837be2b1
commit 41c896bd5d

View File

@ -304,7 +304,7 @@ class StructuredLogger(object):
if not self._ensure_suite_state('suite_end', data):
return
self._log_data("suite_end")
self._log_data("suite_end", data)
@log_action(TestId("test"),
Unicode("path", default=None, optional=True))