This commit is contained in:
ZhuoQinghui 2024-10-31 17:40:13 +08:00
parent 852c65a169
commit efa1752faf
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
log log
vendor vendor
cert cert
bin
/config.yml /config.yml
config.bak.yml config.bak.yml
acme-mana.exe acme-mana.exe

View File

@ -72,9 +72,9 @@ func ParseCertInfo(infoFile string, domain Domain) CertInfo {
} }
var certInfo CertInfo var certInfo CertInfo
err = json.Unmarshal(infoBytes, &certInfo) err = json.Unmarshal(infoBytes, &certInfo)
if err != nil { //if err != nil {
log.Println("Failed to parse cert info file, Domain: {}", domain.Name) // log.Println("Failed to parse cert info file, Domain: {}", domain.Name)
} //}
return certInfo return certInfo
} }