MessageStringFormatter

Implement message format for log writer. Some platforms have native support for either severity or tags. A formatter should ignore those parameters for relevant platforms. For example, on Android both tag and severity are part of the logging API. However, in JavaScript, while severity is part of the API, tags are not.

Inheritors

Functions

Link copied to clipboard
open fun formatMessage(severity: Severity?, tag: Tag?, message: Message): String
Link copied to clipboard
open fun formatSeverity(severity: Severity): String
Link copied to clipboard
open fun formatTag(tag: Tag): String