Demote challenge lookup failures to infos

This commit is contained in:
xenolf 2015-11-16 22:20:16 +01:00
parent 17576f0626
commit dd3d2d5668

View file

@ -368,7 +368,7 @@ func (c *Client) chooseSolvers(auth authorization, domain string) map[int]solver
if solver, ok := c.solvers[auth.Challenges[idx].Type]; ok {
solvers[idx] = solver
} else {
logf("[ERROR] acme: Could not find solver for: %s", auth.Challenges[idx].Type)
logf("[INFO] acme: Could not find solver for: %s", auth.Challenges[idx].Type)
}
}