Signed-off-by: Vishal Rana <vr@labstack.com>
@@ -0,0 +1,13 @@
+// +build !appengine
+
+package log
+import (
+ "io"
+ "github.com/mattn/go-colorable"
+)
+func output() io.Writer {
+ return colorable.NewColorableStdout()
+}
@@ -0,0 +1,9 @@
+// +build appengine
+import "io"
+ return os.stdout