Bug 1867606 - Make message param logging api non nullable

fenix/123.0
rahulsainani 6 months ago committed by mergify[bot]
parent 18086c9a96
commit 4a461e048f

@ -23,7 +23,7 @@ class FenixLogSink(
priority: Log.Priority,
tag: String?,
throwable: Throwable?,
message: String?,
message: String,
) {
if (priority == Log.Priority.DEBUG && !logsDebug) {
return

@ -27,7 +27,7 @@ class FenixLogSinkTest {
"test",
message = "test",
)
verify(exactly = 0) { androidLogSink.log(any(), any(), any()) }
verify(exactly = 0) { androidLogSink.log(any(), any(), any(), any()) }
}
@Test

Loading…
Cancel
Save