You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -219,6 +219,7 @@ For convenience, a web front-end on top of the command-line tool is available at
219
219
### v3.4.0-dev
220
220
- Added warning to all key exchanges that do not include protections against quantum attacks due to the Harvest Now, Decrypt Later strategy (see https://en.wikipedia.org/wiki/Harvest_now,_decrypt_later).
221
221
- Migrated from deprecated `getopt` module to `argparse`; partial credit [oam7575](https://github.com/oam7575).
222
+
- When running against multiple hosts, now prints each target host regardless of output level.
'''Saves output to buffer (if in buffered mode), or immediately prints to stdout otherwise.'''
59
59
60
-
# If we're logging only 'warn' or above, and this is an 'info', ignore message.
61
-
ifself.get_level(level) <self.__level:
60
+
# If we're logging only 'warn' or above, and this is an 'info', ignore message, unless always_print is True (useful for printing informational lines regardless of the level setting).
61
+
if(always_printisFalse) and (self.get_level(level) <self.__level):
0 commit comments