agent/cache: differentiate open log messages (#13362)

Changes the error output for the second open of the persistent cache
file, to differentiate it from the c.UI.Error message for the initial
open of the cache file, just to make it easier to tell where a problem
occurred.
This commit is contained in:
Theron Voran 2021-12-08 10:32:49 -08:00 committed by GitHub
parent 85f5cfc356
commit bfa008d78f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ func (c *AgentCommand) Run(args []string) int {
AAD: aad, AAD: aad,
}) })
if err != nil { if err != nil {
c.UI.Error(fmt.Sprintf("Error opening persistent cache: %v", err)) c.UI.Error(fmt.Sprintf("Error opening persistent cache with wrapper: %v", err))
return 1 return 1
} }