Skip to content

Commit 35906ec

Browse files
committed
gofmt
1 parent 0375a92 commit 35906ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

host/host.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ func main() {
9595
func LogForInfo(message string) {
9696
DebugLogs = append(DebugLogs, message)
9797
if Logging {
98-
fmt.Fprintf(os.Stderr, "[info] " + message + "\n")
98+
fmt.Fprintf(os.Stderr, "[info] "+message+"\n")
9999
log.Print(message + "\r\n")
100100
}
101101
}
102102

103103
func LogForDebug(message string) {
104104
DebugLogs = append(DebugLogs, message)
105105
if Logging && Debug {
106-
fmt.Fprintf(os.Stderr, "[debug] " + message + "\n")
106+
fmt.Fprintf(os.Stderr, "[debug] "+message+"\n")
107107
log.Print(message + "\r\n")
108108
}
109109
}

0 commit comments

Comments
 (0)