Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbrodriguez/mlog
A simple logging module for go, with a rotating file feature and console logging.
https://github.com/jbrodriguez/mlog
Last synced: about 2 months ago
JSON representation
A simple logging module for go, with a rotating file feature and console logging.
- Host: GitHub
- URL: https://github.com/jbrodriguez/mlog
- Owner: jbrodriguez
- License: mit
- Created: 2014-10-20T15:06:26.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-08-05T17:35:46.000Z (over 6 years ago)
- Last Synced: 2024-07-31T20:52:14.191Z (5 months ago)
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 34
- Watchers: 3
- Forks: 19
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - mlog - Simple logging module for go, with 5 levels, an optional rotating logfile feature and stdout/stderr output. (Logging / Search and Analytic Databases)
- awesome-go - mlog - A simple logging module for go, with a rotating file feature and console logging. - ★ 16 (Logging)
- awesome-go-extra - mlog - 10-20T15:06:26Z|2018-08-05T17:35:46Z| (Logging / Advanced Console UIs)
- awesome-go-zh - mlog
README
A simple logging module for go, with a rotating file feature and console logging.
## Installation
go get github.com/jbrodriguez/mlog## Usage
Sample usageWrite to stdout/stderr and create a rotating logfile
```go
package mainimport "github.com/jbrodriguez/mlog"
func main() {
mlog.Start(mlog.LevelInfo, "app.log")mlog.Info("Hello World !")
ipsum := "ipsum"
mlog.Warning("Lorem %s", ipsum)
}
```Write to stdout/stderr only
```go
package mainimport "github.com/jbrodriguez/mlog"
func main() {
mlog.Start(mlog.LevelInfo, "")mlog.Info("Hello World !")
ipsum := "ipsum"
mlog.Warning("Lorem %s", ipsum)
}
```By default, the log will be rolled over to a backup file when its size reaches 10Mb and 10 such files will be created (and eventually reused).
Alternatively, you can specify the max size of the log file before it gets rotated, and the number of backup files you want to create, with the StartEx function.
```go
package mainimport "github.com/jbrodriguez/mlog"
func main() {
mlog.StartEx(mlog.LevelInfo, "app.log", 5*1024*1024, 5)mlog.Info("Hello World !")
ipsum := "ipsum"
mlog.Warning("Lorem %s", ipsum)
}
```
This will rotate the file when it reaches 5Mb and 5 backup files will eventually be created.Setting logger flags:
```go
mlog.DefaultFlags = log.Ldate|log.Ltime|log.Lmicroseconds|log.Lshortfile
```## Output
```
I: 2015/05/15 07:09:45 main.go:10: Hello World !
W: 2015/05/15 07:09:45 main.go:13: Lorem ipsum
```