A golang package for logging to a file
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.
|
package flog |
|
|
|
import ( |
|
"io" |
|
"os" |
|
) |
|
|
|
// Log settings |
|
var ( |
|
MinLevel = LevelInfo |
|
MinStackLevel = LevelError |
|
|
|
Format LogFormatType = TextFormatter{} |
|
Output io.Writer |
|
) |
|
|
|
func getOutput() io.Writer { |
|
if Output != nil { |
|
return Output |
|
} |
|
|
|
return os.Stdout |
|
}
|
|
|