Skip to content

Commit

Permalink
remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 29, 2021
1 parent d9aabfd commit 6f632fb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions xpra/client/mixins/clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,8 @@ def compressible_item(self, compressible):
class ProtocolCompressible(compression.Compressible):
__slots__ = ()
def compress(self):
log.error("compress() 1")
v = client.compressed_wrapper(self.datatype, self.data,
return client.compressed_wrapper(self.datatype, self.data,
level=9, can_inline=False, brotli=True)
log.error("compress() 2")
return v
return ProtocolCompressible(compressible.datatype, compressible.data)

def clipboard_notify(self, n):
Expand Down

0 comments on commit 6f632fb

Please sign in to comment.