Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/logs/init.go
988 views
1
package logs
2
3
import (
4
"github.com/sirupsen/logrus"
5
)
6
7
func Init() {
8
config := getConfig()
9
logrus.SetLevel(config.Level)
10
logrus.SetReportCaller(config.ReportCaller)
11
}
12
13