Commit 0f1a471c authored by Aaron Jacobs's avatar Aaron Jacobs

Revert "Log fuse errors in the test."

There are lots of benign errors that add noise.

This reverts commit 9a148bfd0246c3603ab580c4adfe548f5bd3e3b9.
parent 503825fd
......@@ -61,7 +61,6 @@ type SampleTest struct {
// REQUIRES: t.Server has been set.
func (t *SampleTest) SetUp(ti *ogletest.TestInfo) {
cfg := t.MountConfig
cfg.ErrorLogger = log.New(os.Stderr, "fuse error: ", log.Flags())
if *fDebug {
cfg.DebugLogger = log.New(os.Stderr, "fuse: ", 0)
}
......
......@@ -138,8 +138,7 @@ func main() {
}
cfg := &fuse.MountConfig{
ReadOnly: *fReadOnly,
ErrorLogger: log.New(os.Stderr, "fuse error: ", log.Flags()),
ReadOnly: *fReadOnly,
}
if *fDebug {
......
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