github.com/hanwen/go-fuse@v1.0.0/internal/testutil/log.go (about)

     1  // Copyright 2018 the Go-FUSE Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package testutil
     6  
     7  import "log"
     8  
     9  func init() {
    10  	// For test, the date is irrelevant, but microseconds are.
    11  	log.SetFlags(log.Lmicroseconds)
    12  }