mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
18 lines
313 B
Go
18 lines
313 B
Go
|
|
package conf
|
||
|
|
|
||
|
|
import (
|
||
|
|
"go-common/library/log"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// RecordTimeCostLog 记录日志
|
||
|
|
func RecordTimeCostLog(nowTime int64, desc string) {
|
||
|
|
log.Info(desc+"|%d", nowTime)
|
||
|
|
}
|
||
|
|
|
||
|
|
// RecordTimeCost ...
|
||
|
|
// 记录时间
|
||
|
|
func RecordTimeCost() (NowTime int64) {
|
||
|
|
return time.Now().UnixNano() / 1000000 // 用毫秒
|
||
|
|
}
|