Skip to content

Commit

Permalink
update logging format
Browse files Browse the repository at this point in the history
  • Loading branch information
cxdorn committed Feb 5, 2025
1 parent bf80646 commit 10f3116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tpcc/pytpcc/tpcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def executorFunc(driverClass, scaleParameters, args, config):
else:
seed = int(time.time() * 1000) + os.getpid()
random.seed(seed)
print("Random seed set to:", seed)
logging.info("Random seed set to: %s", seed)

if args['workload']:
constants.WORKLOAD = args['workload']
Expand Down

0 comments on commit 10f3116

Please sign in to comment.