13 lines
161 B
Go
13 lines
161 B
Go
// +build cgo
|
|
|
|
package main
|
|
|
|
import (
|
|
"git.fuyu.moe/Fuyu/flog"
|
|
)
|
|
|
|
func setLogger() {
|
|
flog.MinLevel = flog.LevelDebug
|
|
flog.MinStackLevel = flog.LevelWarning
|
|
}
|