A simple, lightweight, strait to the point logging library for Kotlin Multiplatform Mobile.

Out of the box, the library provides platform-specific loggers for Logcat, NSLog and OSLog, but its easy to extend and configure more.
Two easy steps:
- Install any
Appender
you want on your application. - Call
LOG
's methods everywhere throughout your app.
LOG.i("MyTag","Hello World")
You can control what will be logged based on severity.For example, if you only want anAppender
to receive logsWARN
and up, you can configure it by setting theminLogLevel
of theAppender
.
Copyright (c) 2022 Mindera - Software CraftLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.