import sirupsen with lowercase
[govpp.git] / vendor / github.com / sirupsen / logrus / json_formatter.go
@@ -35,7 +35,7 @@ type JSONFormatter struct {
        //      FieldMap: FieldMap{
        //               FieldKeyTime: "@timestamp",
        //               FieldKeyLevel: "@level",
-       //               FieldKeyLevel: "@message",
+       //               FieldKeyMsg: "@message",
        //    },
        // }
        FieldMap FieldMap
@@ -47,7 +47,7 @@ func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) {
                switch v := v.(type) {
                case error:
                        // Otherwise errors are ignored by `encoding/json`
-                       // https://github.com/Sirupsen/logrus/issues/137
+                       // https://github.com/sirupsen/logrus/issues/137
                        data[k] = v.Error()
                default:
                        data[k] = v