mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Log which files we saved attachments to in the media_repository
This commit is contained in:
parent
657488113e
commit
32019c9897
@ -98,6 +98,8 @@ class MediaRepository(object):
|
||||
with open(fname, "wb") as f:
|
||||
f.write(content)
|
||||
|
||||
logger.info("Stored local media in file %r", fname)
|
||||
|
||||
yield self.store.store_local_media(
|
||||
media_id=media_id,
|
||||
media_type=media_type,
|
||||
@ -190,6 +192,8 @@ class MediaRepository(object):
|
||||
else:
|
||||
upload_name = None
|
||||
|
||||
logger.info("Stored remote media in file %r", fname)
|
||||
|
||||
yield self.store.store_cached_remote_media(
|
||||
origin=server_name,
|
||||
media_id=media_id,
|
||||
|
@ -16,6 +16,10 @@
|
||||
import PIL.Image as Image
|
||||
from io import BytesIO
|
||||
|
||||
import logging
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Thumbnailer(object):
|
||||
|
||||
@ -86,4 +90,5 @@ class Thumbnailer(object):
|
||||
output_bytes = output_bytes_io.getvalue()
|
||||
with open(output_path, "wb") as output_file:
|
||||
output_file.write(output_bytes)
|
||||
logger.info("Stored thumbnail in file %r", output_path)
|
||||
return len(output_bytes)
|
||||
|
@ -97,6 +97,8 @@ class UploadResource(Resource):
|
||||
content_length, requester.user
|
||||
)
|
||||
|
||||
logger.info("Uploaded content with URI %r", content_uri)
|
||||
|
||||
respond_with_json(
|
||||
request, 200, {"content_uri": content_uri}, send_cors=True
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user