Skip to content

Commit

Permalink
Merge pull request google#2006 from eklitzke/statfs
Browse files Browse the repository at this point in the history
Lower log verbosity for statfs failures, fixes google#1772
  • Loading branch information
dashpole authored Aug 15, 2018
2 parents 820ba9b + f31f580 commit 015bce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ func (self *RealFsInfo) GetFsInfoForPath(mountSet map[string]struct{}) ([]Fs, er
}
}
if err != nil {
glog.Errorf("Stat fs failed. Error: %v", err)
glog.V(4).Infof("Stat fs failed. Error: %v", err)
} else {
deviceSet[device] = struct{}{}
fs.DeviceInfo = DeviceInfo{
Expand Down

0 comments on commit 015bce6

Please sign in to comment.