summary refs log tree commit diff stats
path: root/scripts/tracetool.py
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2018-03-06 15:46:50 +0000
committerStefan Hajnoczi <stefanha@redhat.com>2018-03-12 11:10:20 +0000
commit86b5aacfb972ffe0fa5fac6028e9f0bc61050dda (patch)
tree613506fc5e8fce59946c9fb010125151eb48dd37 /scripts/tracetool.py
parente42860ae836dc6f768eff2d51223c47103d2dc3b (diff)
downloadfocaccia-qemu-86b5aacfb972ffe0fa5fac6028e9f0bc61050dda.tar.gz
focaccia-qemu-86b5aacfb972ffe0fa5fac6028e9f0bc61050dda.zip
trace: include filename when printing parser error messages
Improves error messages from:

  ValueError: Error on line 72: need more than 1 value to unpack

To

  ValueError: Error at /home/berrange/src/virt/qemu/trace-events:72:
    need more than 1 value to unpack

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20180306154650.24075-1-berrange@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'scripts/tracetool.py')
-rwxr-xr-xscripts/tracetool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tracetool.py b/scripts/tracetool.py
index c55a21518b..fe2b0771f2 100755
--- a/scripts/tracetool.py
+++ b/scripts/tracetool.py
@@ -142,7 +142,7 @@ def main(args):
     events = []
     for arg in args:
         with open(arg, "r") as fh:
-            events.extend(tracetool.read_events(fh))
+            events.extend(tracetool.read_events(fh, arg))
 
     try:
         tracetool.generate(events, arg_group, arg_format, arg_backends,