summaryrefslogtreecommitdiffstats
path: root/src/orchestrator/internal/logutils/logger.go
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2019-11-25 15:48:58 -0800
committerKiran Kamineni <kiran.k.kamineni@intel.com>2019-11-25 15:49:07 -0800
commit5b21b7900406573bdde42afdac1acd8fc1b9dc07 (patch)
tree18429b8d2796538504ee18166095b455090d9fff /src/orchestrator/internal/logutils/logger.go
parentb86512e598d5e59fe1f2048159e68dea4d229164 (diff)
Adding logging package to v2
Adding logging package to v2 This is migrated from v1 Issue-ID: MULTICLOUD-870 Change-Id: I9b74d77827475a1e1c588af7cb542f5be0cad7dc Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'src/orchestrator/internal/logutils/logger.go')
-rw-r--r--src/orchestrator/internal/logutils/logger.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/orchestrator/internal/logutils/logger.go b/src/orchestrator/internal/logutils/logger.go
new file mode 100644
index 00000000..2e8f9969
--- /dev/null
+++ b/src/orchestrator/internal/logutils/logger.go
@@ -0,0 +1,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)
+}