Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 297 Bytes

usage.md

File metadata and controls

22 lines (14 loc) · 297 Bytes

Usage

Overview

Library is pre-configured in the app module.

Example

import io.github.aakira.napier.Napier

class Application {

    init { Napier.base(DebugAntilog()) }
    
    @JvmStatic
    fun main(args: Array<String>) {
        Napier.i { "Hello World" }
    }

}