3e4e72b00f
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
12 lines
235 B
Go
12 lines
235 B
Go
package capture
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
// Time returns the input string with the time elapsed added.
|
|
func Time(start time.Time, label string) string {
|
|
elapsed := time.Since(start)
|
|
return fmt.Sprintf("%s [%s]", label, elapsed)
|
|
}
|