mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
log.DialogHandler: print formatted record, not just message.
Fixes bug, where DialogHandler would display only %(message) part of the record, instead of the entire formatted record string.
This commit is contained in:
parent
eb149b9129
commit
865d9074e4
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ class DialogHandler(logging.Handler): # pylint: disable=too-few-public-methods
|
|||
lines.
|
||||
|
||||
"""
|
||||
for line in record.getMessage().splitlines():
|
||||
for line in self.format(record).splitlines():
|
||||
# check for lines that would wrap
|
||||
cur_out = line
|
||||
while len(cur_out) > self.width:
|
||||
|
|
|
|||
Loading…
Reference in a new issue