Ocean/Main.go
Thorsten e28999e15f Logging expire
*** Not done yet ***
+ Added configurations for the expire logging function
+ Added the expire logging function
2014-11-07 13:30:33 +01:00

14 lines
352 B
Go

package main
import (
"github.com/SommerEngineering/Ocean/Log"
LM "github.com/SommerEngineering/Ocean/Log/Meta"
"github.com/SommerEngineering/Ocean/System"
)
func main() {
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelINFO, LM.MessageNameSTARTUP, `VRStudiePT is starting.`)
System.InitHandlers()
System.StartAndBlockForever()
}