fixed methodname to make it internal

This commit is contained in:
Philipp Häfelfinger 2019-03-03 23:21:38 +01:00
parent e1c1f9578a
commit 35a74989ed

View File

@ -9,13 +9,11 @@ import (
func main() { func main() {
iniflags.Parse() iniflags.Parse()
initializeLog()
InitializeLog()
app.Run() app.Run()
} }
func InitializeLog() { func initializeLog() {
//TODO: make log configurable to file instead of console //TODO: make log configurable to file instead of console
logrus.SetLevel(logrus.DebugLevel) logrus.SetLevel(logrus.DebugLevel)
logrus.SetOutput(os.Stdout) logrus.SetOutput(os.Stdout)