mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/storage: remove duplicate logging for filepath on errors
This commit is contained in:
parent
044a304adb
commit
932c1f90ae
1 changed files with 2 additions and 2 deletions
|
@ -378,13 +378,13 @@ func (s *Storage) ListSnapshots() ([]string, error) {
|
|||
snapshotsPath := s.path + "/snapshots"
|
||||
d, err := os.Open(snapshotsPath)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("cannot open %q: %w", snapshotsPath, err)
|
||||
return nil, fmt.Errorf("cannot open snapshots directory: %w", err)
|
||||
}
|
||||
defer fs.MustClose(d)
|
||||
|
||||
fnames, err := d.Readdirnames(-1)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("cannot read contents of %q: %w", snapshotsPath, err)
|
||||
return nil, fmt.Errorf("cannot read snapshots directory at %q: %w", snapshotsPath, err)
|
||||
}
|
||||
snapshotNames := make([]string, 0, len(fnames))
|
||||
for _, fname := range fnames {
|
||||
|
|
Loading…
Reference in a new issue