mirror of
https://github.com/photoprism/photoprism.git
synced 2025-11-02 05:02:49 +08:00
11 lines
153 B
Go
11 lines
153 B
Go
package util
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func ProfileTime(start time.Time, name string) {
|
|
elapsed := time.Since(start)
|
|
log.Debugf("%s [%s]", name, elapsed)
|
|
}
|