Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/isayme/go-logger
- Owner: isayme
- License: mit
- Created: 2018-12-06T08:38:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-27T06:10:49.000Z (over 2 years ago)
- Last Synced: 2024-04-16T14:21:44.762Z (8 months ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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{})