Update recovery.go

This commit is contained in:
hellojukay 2018-03-08 12:52:52 +08:00 committed by GitHub
parent 9a69f2fb6b
commit 9b963f4c1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,6 @@ func function(pc uintptr) []byte {
} }
func timeFormat(t time.Time) string { func timeFormat(t time.Time) string {
var nowTime = time.Now() var timeString = t.Format("2006/01/02 - 15:04:05")
var timeString = nowTime.Format("2006/01/02 - 15:04:05")
return timeString return timeString
} }