Certificate table work, shows error message in popover

This commit is contained in:
Jamie Curnow
2023-01-16 11:32:45 +10:00
parent ba138581e1
commit 306ac20457
6 changed files with 77 additions and 6 deletions

View File

@ -107,7 +107,7 @@ func shExec(args []string, envs []string) (string, error) {
b, e := c.CombinedOutput()
if e != nil {
logger.Error("AcmeShError", fmt.Errorf("Command error: %s -- %v\n%+v", acmeSh, args, e))
// logger.Error("AcmeShError", fmt.Errorf("Command error: %s -- %v\n%+v", acmeSh, args, e))
logger.Warn(string(b))
}
@ -128,7 +128,7 @@ func getCommonArgs() []string {
}
args = append(args, "--log", "/data/logs/acme.sh.log")
args = append(args, "--debug", "2")
// args = append(args, "--debug", "2")
return args
}