diff options
-rwxr-xr-x | logparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logparse.py b/logparse.py index 1ef49b4..c42ea7b 100755 --- a/logparse.py +++ b/logparse.py @@ -348,7 +348,7 @@ def main(): # Total bandwidth consumed by this channel's use over time frame. bytecount = pkgs['size'].sum() gib = bytecount / 1e9 - print(f'Channel bytecount = {bytecount}') + print(f'Data transferred: {gib:.2f} GiB') # Number of unique hosts and geographic location unique_hosts = set(pkgs['ipaddress']) |