Update logging.go

This commit is contained in:
vim2meta 2017-11-19 10:11:09 -05:00 committed by GitHub
parent ca1b9186f2
commit 7086a1f2a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ var Logger func(msgL, caller int, format string, a ...interface{})
// msgL : LogLevel of the message
// caller : 1 + the number of callers away from the message source
// format : Printf style message format
// a ... : comma seperated list of values to pass
// a ... : comma separated list of values to pass
func msglog(msgL, caller int, format string, a ...interface{}) {
if Logger != nil {