Skip to content

Commit

Permalink
Move configuration message to the bottom for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Benito Palacios Sanchez committed Sep 29, 2016
1 parent dc05526 commit ec39dde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rtilogparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def print_countset(items, typ, state, color=None):

def print_config(state):
"""Print the configuration logs."""
print_countset(state['config'], 'Config', state)
state['output_device'].write("----------------------")
if 'locators' in state:
print_locators(state)
if 'names' in state and 'name_table' in state:
Expand All @@ -84,6 +84,7 @@ def print_config(state):
print_statistics_bandwidth(state)
if 'statistics_packet' in state and not state['no_stats']:
print_statistics_packets(state)
print_countset(state['config'], 'Config', state)


def print_locators(state):
Expand Down

0 comments on commit ec39dde

Please sign in to comment.