Skip to content

Commit e203535

Browse files
prakashngitcmickeyb
authored andcommitted
Minor bug fix in the ping test module used by CCF. loguru warning method is warning() and not warn()
Signed-off-by: Prakash Narayana Moorthy <[email protected]>
1 parent 6f699de commit e203535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ledgers/ccf/pdo/ledgers/ccf/scripts/ping_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def ping_test(client, num_pings):
3434
total_time = end_time - start_time
3535
txn_throuput = num_pings/total_time
3636

37-
LOG.warn("Performed {0} pings. Average throughput is {1} pings per second".format(num_pings, txn_throuput))
37+
LOG.warning("Performed {0} pings. Average throughput is {1} pings per second".format(num_pings, txn_throuput))
3838

3939
# -----------------------------------------------------------------
4040
def Main() :

0 commit comments

Comments
 (0)