X Tutup
The Wayback Machine - https://web.archive.org/web/20200930053618/https://github.com/darkhpp/logio
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

logio Maven Central Build Status

Simple and lightweight logger for Java/Kotlin/Scala ...

Getting started

To link logio to your project, use:

dependencies
{
    compile 'com.github.sevastyandark:logio:0.2.0'
}

or, using Maven:

    <dependency>
      <groupId>com.github.sevastyandark</groupId>
      <artifactId>logio</artifactId>
      <version>0.2.0</version>
    </dependency>

If you want to compile the source, run

gradlew build

Examples

import com.github.sevastyandark.logio.*

fun main(args: Array<String>)
{
    var log = LoggerFactory.getLog("main") // Name is required

    log.info("Hello, world!")
    log.warn("Something look like to be wrong")
    log.error("Something wrong")
}

Contributions

Contributions are always welcome. Please read Contributing to get more details.

You can’t perform that action at this time.
X Tutup