forked from TrueCloudLab/restic
backup: add debug output for excluded files/dirs
This commit is contained in:
parent
18478e2d3d
commit
b5976474dd
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,7 @@ import (
|
||||||
|
|
||||||
"github.com/restic/restic"
|
"github.com/restic/restic"
|
||||||
"github.com/restic/restic/backend"
|
"github.com/restic/restic/backend"
|
||||||
|
"github.com/restic/restic/debug"
|
||||||
"github.com/restic/restic/filter"
|
"github.com/restic/restic/filter"
|
||||||
"github.com/restic/restic/repository"
|
"github.com/restic/restic/repository"
|
||||||
"golang.org/x/crypto/ssh/terminal"
|
"golang.org/x/crypto/ssh/terminal"
|
||||||
|
@ -300,6 +301,10 @@ func (cmd CmdBackup) Execute(args []string) error {
|
||||||
cmd.global.Warnf("error for exclude pattern: %v", err)
|
cmd.global.Warnf("error for exclude pattern: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if matched {
|
||||||
|
debug.Log("backup.Execute", "path %q excluded by a filter", item)
|
||||||
|
}
|
||||||
|
|
||||||
return !matched
|
return !matched
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue