Skip to content

Commit

Permalink
GH-1510 Add hotstuff logging in distributed-transactions-test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Dec 18, 2023
1 parent fc1dc69 commit a140a37
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
22 changes: 15 additions & 7 deletions tests/TestHarness/logging-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,21 @@
"stderr"
]
},{
"name": "state_history",
"level": "info",
"enabled": true,
"additivity": false,
"appenders": [
"stderr"
]
"name": "state_history",
"level": "info",
"enabled": true,
"additivity": false,
"appenders": [
"stderr"
]
},{
"name": "hotstuff",
"level": "all",
"enabled": true,
"additivity": false,
"appenders": [
"stderr"
]
},{
"name": "transaction",
"level": "info",
Expand Down
2 changes: 1 addition & 1 deletion tests/distributed-transactions-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
testSuccessful=False

random.seed(seed) # Use a fixed seed for repeatability.
cluster=Cluster(unshared=args.unshared, keepRunning=True if nodesFile is not None else args.leave_running, keepLogs=args.keep_logs)
cluster=Cluster(unshared=args.unshared, keepRunning=True if nodesFile is not None else args.leave_running, keepLogs=args.keep_logs, loggingLevel="all")
walletMgr=WalletMgr(True)

try:
Expand Down

0 comments on commit a140a37

Please sign in to comment.