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
1 changed files with 2 additions and 4 deletions

View File

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