mapserver/server/mapobjectdb/postgres/logger.go
NatureFreshMilk fba3f118d8 fix #19
2019-03-21 15:07:09 +01:00

12 lines
173 B
Go

package postgres
import (
"github.com/sirupsen/logrus"
)
var log *logrus.Entry
func init() {
log = logrus.WithFields(logrus.Fields{"prefix": "mapobjectdb.postgres"})
}