aboutsummaryrefslogtreecommitdiffstats
path: root/src/orchestrator/pkg/infra/logutils/logger.go
blob: 2e8f9969e644aa511ee2a92c6d6cdce31a9b7d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package logutils

import (
	log "github.com/sirupsen/logrus"
)

//Fields is type that will be used by the calling function
type Fields map[string]interface{}

func init() {
	// Log as JSON instead of the default ASCII formatter.
	log.SetFormatter(&log.JSONFormatter{})
}

// Error uses the fields provided and logs
func Error(msg string, fields Fields) {
	log.WithFields(log.Fields(fields)).Error(msg)
}

// Warn uses the fields provided and logs
func Warn(msg string, fields Fields) {
	log.WithFields(log.Fields(fields)).Warn(msg)
}

// Info uses the fields provided and logs
func Info(msg string, fields Fields) {
	log.WithFields(log.Fields(fields)).Info(msg)
}