added KOPIA_TRACE_STORAGE environment variable option to log all vault/repository actions

This commit is contained in:
Jarek Kowalski
2016-08-22 22:22:07 -07:00
parent b3a611ffba
commit 52d056ec19

View File

@@ -20,7 +20,7 @@
)
var (
traceStorage = app.Flag("trace-storage", "Enables tracing of storage operations.").Hidden().Bool()
traceStorage = app.Flag("trace-storage", "Enables tracing of storage operations.").Hidden().Envar("KOPIA_TRACE_STORAGE").Bool()
vaultConfigPath = app.Flag("vaultconfig", "Specify the vault config file to use.").PlaceHolder("PATH").Envar("KOPIA_VAULTCONFIG").String()
vaultPath = app.Flag("vault", "Specify the vault to use.").PlaceHolder("PATH").Envar("KOPIA_VAULT").Short('v').String()