Skip to content

Commit

Permalink
log packet errors with a full backtrace
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 21, 2021
1 parent 2e4246f commit fe5f3e3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions xpra/server/window/window_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -1949,8 +1949,7 @@ def make_data_packet_cb(self, w, h, damage_time, process_damage_time, image, cod
log("make_data_packet%s", (damage_time, process_damage_time, image, coding, sequence, options, flush),
exc_info=True)
if not self.is_cancelled(sequence):
log.error("Error: failed to create data packet")
log.error(" %s", e)
log.error("Error: failed to create data packet", exc_info=True)
packet = None
finally:
self.free_image_wrapper(image)
Expand Down

0 comments on commit fe5f3e3

Please sign in to comment.