Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/isayme/go-logger

A simple logger for small project
https://github.com/isayme/go-logger

Last synced: 12 days ago
JSON representation

A simple logger for small project

Awesome Lists containing this project

README

        

## go-logger
A simple logger for small project

## APIs
- Trace(args ...interface{})
- Tracef(format string, args ...interface{})
- Tracew(msg string, args ...interface{})

- Debug(args ...interface{})
- Debugf(format string, args ...interface{})
- Debugw(msg string, args ...interface{})

- Info(args ...interface{})
- Infof(format string, args ...interface{})
- Infow(msg string, args ...interface{})

- Warn(args ...interface{})
- Warnf(format string, args ...interface{})
- Warnw(msg string, args ...interface{})

- Error(args ...interface{})
- Errorf(format string, args ...interface{})
- Errorw(msg string, args ...interface{})

- Panic(args ...interface{})
- Panicf(format string, args ...interface{})
- Panicw(msg string, args ...interface{})