diff -Nru golang-logrus-0.7.3+6+g48c21bc/debian/changelog golang-logrus-0.7.3+8+g52919f1/debian/changelog --- golang-logrus-0.7.3+6+g48c21bc/debian/changelog 2015-05-12 15:55:58.000000000 +0000 +++ golang-logrus-0.7.3+8+g52919f1/debian/changelog 2015-05-12 17:55:34.000000000 +0000 @@ -1,8 +1,8 @@ -golang-logrus (0.7.3+6+g48c21bc-1~utopic1) utopic; urgency=low +golang-logrus (0.7.3+8+g52919f1-1~utopic1) utopic; urgency=low * Automated rebuild. - -- Tianon Gravi Tue, 12 May 2015 15:55:58 +0000 + -- Tianon Gravi Tue, 12 May 2015 17:55:34 +0000 golang-logrus (0.7.1-1) unstable; urgency=medium diff -Nru golang-logrus-0.7.3+6+g48c21bc/README.md golang-logrus-0.7.3+8+g52919f1/README.md --- golang-logrus-0.7.3+6+g48c21bc/README.md 2015-05-12 14:45:09.000000000 +0000 +++ golang-logrus-0.7.3+8+g52919f1/README.md 2015-05-12 17:38:02.000000000 +0000 @@ -32,7 +32,7 @@ "time":"2014-03-10 19:57:38.562543128 -0400 EDT"} ``` -With the default `log.Formatter = new(logrus.TextFormatter)` when a TTY is not +With the default `log.Formatter = new(&log.TextFormatter{})` when a TTY is not attached, the output is compatible with the [logfmt](http://godoc.org/github.com/kr/logfmt) format: @@ -269,7 +269,7 @@ log.SetFormatter(logrus.JSONFormatter) } else { // The TextFormatter is default, you don't actually have to do this. - log.SetFormatter(logrus.TextFormatter) + log.SetFormatter(&log.TextFormatter{}) } } ```