We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec9253 commit 9e39a41Copy full SHA for 9e39a41
pkg/logging/logging.go
@@ -0,0 +1,8 @@
1
+package logging
2
+
3
+import "github.com/labstack/gommon/color"
4
5
+// Error log error messages.
6
+func Error(str string) {
7
+ color.Println(color.Red("[✖] ") + color.Yellow(str))
8
+}
0 commit comments