packagelogutilsimport(log"github.com/sirupsen/logrus")funcinit(){// Log as JSON instead of the default ASCII formatter.log.SetFormatter(&log.JSONFormatter{})}funcWithFields(msgstring,fkeystring,fvaluestring){log.WithFields(log.Fields{fkey:fvalue}).Error(msg)}