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