1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-12 12:40:38 +00:00

Merge branch 'develop' into develop

This commit is contained in:
astaxie
2018-06-23 22:43:45 +08:00
committed by GitHub
3 changed files with 5 additions and 3 deletions

View File

@ -93,7 +93,7 @@ const (
func formatTimeHeader(when time.Time) ([]byte, int) {
y, mo, d := when.Date()
h, mi, s := when.Clock()
ns := when.Nanosecond()/1000000
ns := when.Nanosecond() / 1000000
//len("2006/01/02 15:04:05.123 ")==24
var buf [24]byte