diff options
author | Jakob Unterwurzacher | 2020-10-14 15:33:37 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2020-10-14 15:37:37 +0200 |
commit | 871f305f9016b9f52bbc7d49ed4da1a7fffacf9d (patch) | |
tree | 87836759c432bb478e813a46604aebd28c005c6c /main.go | |
parent | ec3eaf0b8776500a9762555eac754b6c893420fd (diff) |
main: show microseconds in go-fuse logs
Suppress the date but show microseconds in fuse debug logs
(-fusedebug) and go-fuse warnings.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -161,6 +161,8 @@ func main() { if os.Getenv("PATH") == "" { os.Setenv("PATH", "/usr/sbin:/usr/bin:/sbin:/bin") } + // Show microseconds in go-fuse debug output (-fusedebug) + log.SetFlags(log.Lmicroseconds) var err error // Parse all command-line options (i.e. arguments starting with "-") // into "args". Path arguments are parsed below. |