
Dead simple logging library for apps, supporting various platforms. Offers multiple log levels like verbose, debug, info, warn, and error with easy console output.
Dead simple logging for Kotlin Multiplatform apps. Supports: Android, iOS, JVM, Browser (JS/WASM), NodeJS targets.
repositories {
mavenCentral()
}
dependencies {
implementation("com.alexstyl:debugln:1.0.3")
}// these will be printed in the console
verboseln { "Verbose" }
debugln { "Debug" }
infoln { "Info" }
warnln { "Warn" }
errorln { "Error" }
// disables logging
allowLogging = false
verboseln { "Verbose" }
debugln { "Debug" }
infoln { "Info" }
warnln { "Warn" }
errorln { "Error" }Will print the following in the respective platform's console:
We are currently accepting contributions in the form of bug reports and feature requests, in the form of Github issues.
Dead simple logging for Kotlin Multiplatform apps. Supports: Android, iOS, JVM, Browser (JS/WASM), NodeJS targets.
repositories {
mavenCentral()
}
dependencies {
implementation("com.alexstyl:debugln:1.0.3")
}// these will be printed in the console
verboseln { "Verbose" }
debugln { "Debug" }
infoln { "Info" }
warnln { "Warn" }
errorln { "Error" }
// disables logging
allowLogging = false
verboseln { "Verbose" }
debugln { "Debug" }
infoln { "Info" }
warnln { "Warn" }
errorln { "Error" }Will print the following in the respective platform's console:
We are currently accepting contributions in the form of bug reports and feature requests, in the form of Github issues.