Skip to content

Commit

Permalink
cosmetic: use correct time unit in logging
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Apr 25, 2024
1 parent e38bd46 commit 6a4de8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/codecs/gstreamer/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def process_buffer(self, buf, options: typedict):
return self.frame_queue.get(timeout=timeout/1000)
except Empty:
log_fn = log.debug if junk else log.error
log_fn(f"Error: frame queue timeout after {timeout}s")
log_fn(f"Error: frame queue timeout after {timeout}ms")
try:
btype = type(buf).__qualname__.lower()
log_fn(f" on {btype!r} of size {buf.get_size()}")
Expand Down

0 comments on commit 6a4de8f

Please sign in to comment.