diff options
Diffstat (limited to 'GstDebugViewer')
-rw-r--r-- | GstDebugViewer/Data.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/GstDebugViewer/Data.py b/GstDebugViewer/Data.py index 077aec0..4b3b68d 100644 --- a/GstDebugViewer/Data.py +++ b/GstDebugViewer/Data.py @@ -287,20 +287,6 @@ class LogLine (list): return line - def line_string (self, message = None): - - # Replicates gstreamer/gst/gstinfo.c:gst_debug_log_default. - - ts, pid, thread, level, category, filename, line, function, object_, message_offset = self - - if isinstance (message_offset, str): - message = message_offset - - # FIXME: Regarding object_, this doesn't fully replicate the formatting! - return "%s %5d 0x%x %s %20s %s:%d:%s:<%s> %s" % (time_args (ts), pid, thread, level.name.ljust (5), - category, filename, line, function, - object_, message,) - class LogLines (object): def __init__ (self, fileobj, line_cache): |