12 lines
175 B
Go
Raw Normal View History

2019-01-11 08:58:12 +01:00
package mapblockparser
import (
2019-01-13 16:37:03 +01:00
"github.com/sirupsen/logrus"
2019-01-11 08:58:12 +01:00
)
var log *logrus.Entry
2019-01-13 16:37:03 +01:00
func init() {
2019-01-11 08:58:12 +01:00
log = logrus.WithFields(logrus.Fields{"prefix": "mapblockaccessor"})
}