1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-08-08 22:36:48 +02:00

remove debug print statements

This commit is contained in:
Kelly Brazil
2019-10-17 12:09:05 -07:00
parent 7b8540ae2a
commit 5fb21b0776

View File

@ -30,8 +30,6 @@ class state():
def parse_line(entry):
parsed_line = entry.split()
print(parsed_line)
output_line = {}
output_line['local_address'] = parsed_line[3].rsplit(':', 1)[0]
@ -102,12 +100,6 @@ def parse(data):
else:
state.network = 'ipv4'
print(line)
print(f'section: {state.section}')
print(f'session: {state.session}')
print(f'network: {state.network}')
print()
if state.section == 'client' and state.session == 'tcp' and state.network == 'ipv4':
state.client_tcp_ip4.append(parse_line(line))