summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/logrus-prefixed-formatter/examples/themes.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/logrus-prefixed-formatter/examples/themes.go')
-rw-r--r--vendor/github.com/matterbridge/logrus-prefixed-formatter/examples/themes.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/logrus-prefixed-formatter/examples/themes.go b/vendor/github.com/matterbridge/logrus-prefixed-formatter/examples/themes.go
new file mode 100644
index 00000000..6c911aea
--- /dev/null
+++ b/vendor/github.com/matterbridge/logrus-prefixed-formatter/examples/themes.go
@@ -0,0 +1,48 @@
+package main
+
+import (
+ "github.com/sirupsen/logrus"
+ prefixed "github.com/x-cray/logrus-prefixed-formatter"
+)
+
+var log = logrus.New()
+
+func init() {
+ formatter := new(prefixed.TextFormatter)
+ formatter.FullTimestamp = true
+
+ // Set specific colors for prefix and timestamp
+ formatter.SetColorScheme(&prefixed.ColorScheme{
+ PrefixStyle: "blue+b",
+ TimestampStyle: "white+h",
+ })
+
+ log.Formatter = formatter
+ log.Level = logrus.DebugLevel
+}
+
+func main() {
+ log.WithFields(logrus.Fields{
+ "prefix": "main",
+ "animal": "walrus",
+ "number": 8,
+ }).Debug("Started observing beach")
+
+ // Or you can simply add prefix in square brackets within message itself
+ log.WithFields(logrus.Fields{
+ "animal": "walrus",
+ "size": 10,
+ }).Debug("[main] A group of walrus emerges from the ocean")
+
+ // Warning message
+ log.WithFields(logrus.Fields{
+ "omg": true,
+ "number": 122,
+ }).Warn("[main] The group's number increased tremendously!")
+
+ // Information message
+ log.WithFields(logrus.Fields{
+ "prefix": "sensor",
+ "temperature": -4,
+ }).Info("Temperature changes")
+}