Merge branch 'master' into master
This commit is contained in:
commit
013102194f
@ -63,8 +63,13 @@ var LogFormatter = func(values ...interface{}) (messages []interface{}) {
|
|||||||
formattedValues = append(formattedValues, "NULL")
|
formattedValues = append(formattedValues, "NULL")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
switch value.(type) {
|
||||||
|
case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, float32, float64, bool:
|
||||||
|
formattedValues = append(formattedValues, fmt.Sprintf("%v", value))
|
||||||
|
default:
|
||||||
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", value))
|
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", value))
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
formattedValues = append(formattedValues, "NULL")
|
formattedValues = append(formattedValues, "NULL")
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user