1
0
mirror of https://github.com/go-acme/lego.git synced 2025-04-11 11:51:56 +02:00

Do not exit on domain failure, only log it.

This commit is contained in:
xenolf 2015-11-11 00:10:08 +01:00
parent b958bd2da4
commit 438531d667

View File

@ -128,7 +128,7 @@ func run(c *cli.Context) {
certs, failures := client.ObtainCertificates(c.GlobalStringSlice("domains"), true)
if len(failures) > 0 {
for k, v := range failures {
logger().Fatalf("[%s] Could not obtain certificates\n\t%v", k, v)
logger().Printf("[%s] Could not obtain certificates\n\t%v", k, v)
}
}