mapserver/mapobjectdb/postgres/logger.go

12 lines
173 B
Go
Raw Normal View History

2019-03-21 17:07:09 +03:00
package postgres
import (
"github.com/sirupsen/logrus"
)
var log *logrus.Entry
func init() {
log = logrus.WithFields(logrus.Fields{"prefix": "mapobjectdb.postgres"})
}