-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdbg.go
115 lines (94 loc) · 2.46 KB
/
dbg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package dbg
import (
"fmt"
"github.com/mgutz/ansi"
)
// Color is an enum for debug colors
type Color string
const (
// ColorDefault debug
ColorDefault Color = "default"
// ColorGreen debug
ColorGreen = "green"
// ColorYellow debug
ColorYellow = "yellow"
// ColorRed debug
ColorRed = "red"
// ColorBlue debug
ColorBlue = "blue"
// ColorWhite debug
ColorWhite = "white"
// ColorBlack debug
ColorBlack = "black"
// ColorCyan debug
ColorCyan = "cyan"
// ColorMagenta debug
ColorMagenta = "magenta"
)
//Sprint formats your string with colors
func Sprint(color Color, msg ...interface{}) string {
return sprint(color, false, msg...)
}
//Sprintf formats your string with colors
func Sprintf(color Color, format string, msg ...interface{}) string {
return sprint(color, false, fmt.Sprintf(format, msg...))
}
func sprint(color Color, isMap bool, msg ...interface{}) string {
if color != ColorDefault {
c := ansi.ColorCode(fmt.Sprintf("%s+h:black", color))
reset := ansi.ColorCode("reset")
msg = append([]interface{}{c}, msg...)
msg = append(msg, reset)
}
if isMap {
return fmt.Sprintf("%+v\n", msg...)
}
return fmt.Sprintln(msg...)
}
func dbg(color Color, isMap bool, msg ...interface{}) {
fmt.Print(sprint(color, isMap, msg...))
}
// Warn prints the given params in Yellow
func Warn(msg ...interface{}) {
dbg(ColorYellow, false, msg...)
}
// Error prints the given params in Red
func Error(msg ...interface{}) {
dbg(ColorRed, false, msg...)
}
// ColorDebug prints a single param in given color
func ColorDebug(msg interface{}, color Color) {
dbg(color, false, msg)
}
// Debug prints the given params without color (wraps fmt.Println)
func Debug(msg ...interface{}) {
fmt.Println(msg...)
}
// DebugMap prints the given params as key:value maps
func DebugMap(msg ...interface{}) {
dbg(ColorDefault, true, msg...)
}
// Green prints the given params in Green
func Green(msg ...interface{}) {
dbg(ColorGreen, false, msg...)
}
// Yellow prints the given params in Yellow
func Yellow(msg ...interface{}) {
dbg(ColorYellow, false, msg...)
}
// Red prints the given params in Red
func Red(msg ...interface{}) {
dbg(ColorRed, false, msg...)
}
// Blue prints the given params in Blue
func Blue(msg ...interface{}) {
dbg(ColorBlue, false, msg...)
}
// Cyan prints the given params in Cyan
func Cyan(msg ...interface{}) {
dbg(ColorCyan, false, msg...)
}
// Magenta prints the given params in Magenta
func Magenta(msg ...interface{}) {
dbg(ColorMagenta, false, msg...)
}