Demote challenge lookup failures to infos
This commit is contained in:
parent
17576f0626
commit
dd3d2d5668
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
if solver, ok := c.solvers[auth.Challenges[idx].Type]; ok {
|
||||||
solvers[idx] = solver
|
solvers[idx] = solver
|
||||||
} else {
|
} 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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue