You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			| 
				
					
						
							 | 
			5 years ago | |
|---|---|---|
| .. | ||
| .gitignore | 5 years ago | |
| LICENSE | 5 years ago | |
| README.md | 5 years ago | |
| README_CN.md | 5 years ago | |
| dbwriter.go | 5 years ago | |
| filewriter.go | 5 years ago | |
| go.mod | 5 years ago | |
| go.sum | 5 years ago | |
| logext.go | 5 years ago | |
		
			
				
				README.md
			
		
		
			
			
		
	
	log
Installation
go get gitea.com/lunny/log
Features
- Add color support for unix console
 - Implemented dbwriter to save log to database
 - Implemented FileWriter to save log to file by date or time.
 - Location configuration
 
Example
For Single File:
f, _ := os.Create("my.log")
log.Std.SetOutput(f)
For Multiple Writer:
f, _ := os.Create("my.log")
log.Std.SetOutput(io.MultiWriter(f, os.Stdout))
For log files by date or time:
w := log.NewFileWriter(log.FileOptions{
    ByType:log.ByDay,
    Dir:"./logs",
})
log.Std.SetOutput(w)
About
This repo is an extension of Golang log.
LICENSE
BSD License http://creativecommons.org/licenses/BSD/
