Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/desperatee/go-log

Simple Golang logger package with multi-platform color support, with 3 different levels of logs (info, warn, error)
https://github.com/desperatee/go-log

cli console go golang log logger logging terminal

Last synced: 29 days ago
JSON representation

Simple Golang logger package with multi-platform color support, with 3 different levels of logs (info, warn, error)

Awesome Lists containing this project

README

        

# go-log

Simple Golang logger package with multi-platform color support, with 3 different levels of logs (info, warn, error)

# How to use
```go
package main

import "github.com/desperatee/go-log"

func main() {
log.Log(log.Info, "Hello world!")
}