Skip to content

Commit

Permalink
Changing prints to logger info if crashing on friday->Question is whi…
Browse files Browse the repository at this point in the history
…ch encryption better faster or slower but sturdy?
  • Loading branch information
SirGankalot committed Jun 4, 2024
1 parent 58ac94c commit 0babb91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions checker/src/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def putflag_test(
email_1, password1_1 = await checker_util_func.create_user(client, logger, public_key='on')
break
except:
print("time taken: ", datetime.datetime.now() - start)
logger.info("time taken: ", datetime.datetime.now() - start)
success = False

if not success:
Expand Down Expand Up @@ -244,7 +244,7 @@ async def putnoise0(
try:
email_1, password1_1 = await checker_util_func.create_user(client, logger, public_key='on')
except:
print("time taken: ", datetime.datetime.now() - start)
logger.info("time taken: ", datetime.datetime.now() - start)
raise MumbleException("Could not create user 1")
try:
private_key = await checker_util_func.get_private_key(client, logger)
Expand Down Expand Up @@ -341,7 +341,7 @@ async def havoc0(
try:
email_1, password1_1 = await checker_util_func.create_user(client, logger, public_key='on')
except:
print("time taken: ", datetime.datetime.now() - start)
logger.info("time taken: ", datetime.datetime.now() - start)
raise MumbleException("Could not create user 1 with public key")
try:
await checker_util_func.logout(client, logger)
Expand Down

0 comments on commit 0babb91

Please sign in to comment.