TestMNetLogger

class TestMNetLogger : MNetLogger

Logger implementation for test devices.

Redirects all log messages to Android's Log system with a fixed "TestDevice" tag. Supports both direct message strings and lambda message providers.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open operator override fun invoke(priority: Int, message: () -> String, exception: Exception?)

Logs a lazily evaluated message and optional exception with a given priority.

open operator override fun invoke(priority: Int, message: String, exception: Exception?)

Logs a message and optional exception with a given priority.