miniflux-v2/timer/timer.go

18 lines
430 B
Go
Raw Normal View History

2018-01-03 04:15:08 +01:00
// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-11-20 06:10:04 +01:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-01-03 04:15:08 +01:00
package timer
2017-11-20 06:10:04 +01:00
import (
"time"
2017-12-16 03:55:57 +01:00
"github.com/miniflux/miniflux/logger"
2017-11-20 06:10:04 +01:00
)
// ExecutionTime returns the elapsed time of a block of code.
func ExecutionTime(start time.Time, name string) {
elapsed := time.Since(start)
2017-12-16 03:55:57 +01:00
logger.Debug("%s took %s", name, elapsed)
2017-11-20 06:10:04 +01:00
}