12 lines
159 B
Go
12 lines
159 B
Go
|
package web
|
||
|
|
||
|
import (
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
var log *logrus.Entry
|
||
|
|
||
|
func init() {
|
||
|
log = logrus.WithFields(logrus.Fields{"prefix": "mapobjectdb"})
|
||
|
}
|