Commit 849b50c1 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

internal/testutil: print microsecond timestamps in tests.

This helps debugging timing issues
parent bb4b6b7b
// Copyright 2018 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testutil
import "log"
func init() {
// For test, the date is irrelevant, but microseconds are.
log.SetFlags(log.Lmicroseconds)
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment