From 4c3162b332e2dbccb089a667a358d03c85a40826 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Thu, 14 May 2020 12:18:10 +0200 Subject: chattyparser.py: remove depth from Trace __str__ --- chattyparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chattyparser.py b/chattyparser.py index c51e2bc..50cbcd2 100755 --- a/chattyparser.py +++ b/chattyparser.py @@ -75,7 +75,7 @@ class Trace: var_arg = hex(self.var_arg) else: var_arg = self.var_arg - return f"{self.tid}: {self.depth} {self.func.name} {hex(self.ptr)} {self.size} {var_arg}" + return f"{self.tid}: {self.func.name} {hex(self.ptr)} {self.size} {var_arg}" def update_cache_lines(cache_lines, trace, size): """mark or unmark all cache lines spanned by this allocation""" -- cgit v1.2.3