We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0375a92 commit 35906ecCopy full SHA for 35906ec
host/host.go
@@ -95,15 +95,15 @@ func main() {
95
func LogForInfo(message string) {
96
DebugLogs = append(DebugLogs, message)
97
if Logging {
98
- fmt.Fprintf(os.Stderr, "[info] " + message + "\n")
+ fmt.Fprintf(os.Stderr, "[info] "+message+"\n")
99
log.Print(message + "\r\n")
100
}
101
102
103
func LogForDebug(message string) {
104
105
if Logging && Debug {
106
- fmt.Fprintf(os.Stderr, "[debug] " + message + "\n")
+ fmt.Fprintf(os.Stderr, "[debug] "+message+"\n")
107
108
109
0 commit comments