0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-24 10:38:59 +02:00

Remove logging in multipart (#17563)

This is really spurious and causes a lot of spam. I don't think there is
a use for it even at DEBUG level.
This commit is contained in:
Erik Johnston 2024-08-13 15:56:18 +01:00 committed by GitHub
parent 3e7eb45eb1
commit aaa3c36420
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

1
changelog.d/17563.misc Normal file
View file

@ -0,0 +1 @@
Reduce log spam of multipart files.

View file

@ -1088,7 +1088,6 @@ class _MultipartParserProtocol(protocol.Protocol):
return return
# otherwise we are in the file part # otherwise we are in the file part
else: else:
logger.info("Writing multipart file data to stream")
try: try:
self.stream.write(data[start:end]) self.stream.write(data[start:end])
except Exception as e: except Exception as e: