fix missing bracket

This commit is contained in:
richardsonjack 2018-04-23 11:59:51 +09:30
parent 7edf430f9a
commit 26636b0976
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ func (r *revid) Log(logType, m string) {
r.config.Logger.Log(logType, m)
return
}
fmt.Println(logType + ": " + m
fmt.Println(logType + ": " + m)
}
}