You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logging.Error("Could not create temporary log file: %s", errs.JoinMessage(err))
35
-
aggErr=locale.WrapError(aggErr, "err_clean_logfile", "Could not create temporary log file")
35
+
aggErr=locale.WrapError(aggErr, "err_clean_logfile", "Could not create temporary log file: {{.V0}}", err.Error())
36
36
}
37
37
38
38
stateExec, err:=installation.StateExec()
39
39
iferr!=nil {
40
40
logging.Debug("Could not get State Tool executable: %s", errs.JoinMessage(err))
41
-
aggErr=locale.WrapError(aggErr, "err_state_exec")
41
+
aggErr=locale.WrapError(aggErr, "err_state_exec_with_error", "Could not get State Tool executable: {{.V0}}", err.Error())
42
42
}
43
43
44
44
err=removeInstall(logFile.Name(), params, u.cfg)
45
45
iferr!=nil {
46
46
logging.Debug("Could not remove installation: %s", errs.JoinMessage(err))
47
-
aggErr=locale.WrapError(aggErr, "uninstall_remove_executables_err", "Failed to remove all State Tool files in installation directory {{.V0}}", filepath.Dir(stateExec))
47
+
aggErr=locale.WrapError(aggErr, "uninstall_remove_executables_err", "Failed to remove all State Tool files in installation directory {{.V0}}: {{.V1}}", filepath.Dir(stateExec), err.Error())
0 commit comments