mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] avoid reverse order log display on web admin
This commit is contained in:
parent
5b73ab448f
commit
86eb9a2405
1 changed files with 1 additions and 2 deletions
|
@ -292,8 +292,7 @@ def _certificate_install_letsencrypt(auth, domain_list, force=False, no_checks=F
|
|||
m18n.n("certmanager_cert_install_success", domain=domain))
|
||||
|
||||
except Exception as e:
|
||||
logger.error("Certificate installation for %s failed !", domain)
|
||||
logger.error(str(e))
|
||||
logger.error("Certificate installation for %s failed !\nException: %s", domain, e)
|
||||
|
||||
|
||||
def certificate_renew(auth, domain_list, force=False, no_checks=False, email=False, staging=False):
|
||||
|
|
Loading…
Add table
Reference in a new issue