diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 8cbd66e5..48dbf440 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -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))