4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-07-03 09:37:47 +00:00

Add support for flexible logging levels

This commit is contained in:
Neil Alexander
2019-01-27 13:31:43 +00:00
parent 5b31cbee2a
commit 0838928668
18 changed files with 105 additions and 88 deletions

View File

@ -96,7 +96,7 @@ func (r *router) init(core *Core) {
// Starts the mainLoop goroutine.
func (r *router) start() error {
r.core.log.Println("Starting router")
r.core.log.Infoln("Starting router")
go r.mainLoop()
return nil
}