Fix docker build, tweaks logger

This commit is contained in:
simon987 2021-02-06 15:14:03 -05:00
parent 2b25f2afe0
commit 632f05c9ea
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
FROM golang:1.15 as go_build
WORKDIR /build/
COPY main.go .
COPY *.go ./
COPY go.mod .
RUN GOOS=linux CGO_ENABLED=0 go build -a -installsuffix cgo -o feed_archiver .
RUN strip feed_archiver

View File

@ -58,7 +58,7 @@ func (m *Monitoring) flushQueue(bp *influx.BatchPoints) {
logrus.WithFields(logrus.Fields{
"size": len((*bp).Points()),
}).Debug("Wrote points")
}).Info("Wrote points")
*bp, _ = influx.NewBatchPoints(influx.BatchPointsConfig{
Database: m.database,

View File

@ -117,7 +117,7 @@ func main() {
archiverCtx.tables = map[string]bool{}
logrus.SetLevel(logrus.DebugLevel)
logrus.SetLevel(logrus.InfoLevel)
connPoolConfig := pgx.ConnPoolConfig{
ConnConfig: pgx.ConnConfig{