Change a couple print statements to logging.info

Quiet mode is now a little more useful!
This commit is contained in:
BBaoVanC 2020-09-04 15:37:34 -05:00
parent 6f64890e34
commit c9cd6469a9
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 4 additions and 2 deletions

View File

@ -118,13 +118,15 @@ def cmd_remove(args):
if rmkey(args.key):
logging.debug("Successfully removed the requested key")
else:
print("No key was removed.")
logging.info("No key was removed.")
def cmd_dedupe(args):
for d in find_duplicates():
r = rmkey(d)
logging.debug(r)
print("Removed duplicate key: {0}".format(d))
logging.info("Removed duplicate key: {0}".format(d))
else:
logging.info("[" + u"\u2713" + "] No duplicate keys found!")
def cmd_show(args):
for k in get_keys():