mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Demote PEM generation to logger.debug (#4549)
This commit is contained in:
parent
b41472afce
commit
0c4e813a72
1 changed files with 4 additions and 4 deletions
|
|
@ -54,13 +54,13 @@ def init_save_key(key_size, key_dir, keyname="key-certbot.pem"):
|
|||
config.strict_permissions)
|
||||
if config.dry_run:
|
||||
key_path = None
|
||||
logger.info("Generating key (%d bits), not saving to file", key_size)
|
||||
logger.debug("Generating key (%d bits), not saving to file", key_size)
|
||||
else:
|
||||
key_f, key_path = util.unique_file(
|
||||
os.path.join(key_dir, keyname), 0o600, "wb")
|
||||
with key_f:
|
||||
key_f.write(key_pem)
|
||||
logger.info("Generating key (%d bits): %s", key_size, key_path)
|
||||
logger.debug("Generating key (%d bits): %s", key_size, key_path)
|
||||
|
||||
return util.Key(key_path, key_pem)
|
||||
|
||||
|
|
@ -89,13 +89,13 @@ def init_save_csr(privkey, names, path):
|
|||
config.strict_permissions)
|
||||
if config.dry_run:
|
||||
csr_filename = None
|
||||
logger.info("Creating CSR: not saving to file")
|
||||
logger.debug("Creating CSR: not saving to file")
|
||||
else:
|
||||
csr_f, csr_filename = util.unique_file(
|
||||
os.path.join(path, "csr-certbot.pem"), 0o644, "wb")
|
||||
with csr_f:
|
||||
csr_f.write(csr_pem)
|
||||
logger.info("Creating CSR: %s", csr_filename)
|
||||
logger.debug("Creating CSR: %s", csr_filename)
|
||||
|
||||
return util.CSR(csr_filename, csr_pem, "pem")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue